pkgsrc/devel/go-gospel/PLIST
nikita 55263a27a2 Add devel/go-gospel Version 0.0.20200416
Imported from wip.

Gospel ("GO SPEcial Library") is a Go library which includes the
following packages:
- gospel/parser: Read/access/write nested data structures
- gospel/network: Network-related functionality, services, packet
  handling, TOR, SOCKS5 connection handler, SMTP/POP3 mail handling
- gospel/bitcoin: Elliptic curve crypto (Secp256k1), Bitcoin
  addresses, key exchange, raw transactions, hash functions (Hash160,
  Hash256), base58 encoding
- gospel/bitcoin/wallet: HD key space, BIP39 seed words
- gospel/bitcoin/rpc: JSON-RPC to Bitcoin server
- gospel/bitcoin/script: Bitcoin script parser/interpreter
- gospel/math: Mathematical helpers, Fast Fourier Transformation,
  Arbitrary precision integers with chainable methods
- gospel/crypto: cryptographic helpers, secret sharing, prime fields,
  PRNG, Paillier crypto scheme, cryptographic counters
- gospel/logger: logging facilities
- gospel/data: useful data structures like stacks, vectors,
  Marshal/Unmarshal Golang objects, Bloom filter
2020-04-28 13:14:21 +00:00

109 lines
5.8 KiB
Text

@comment $NetBSD: PLIST,v 1.1 2020/04/28 13:14:21 nikita Exp $
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/rpc.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/script.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/bitcoin/wallet.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/concurrent.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/crypto.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/crypto/ed25519.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/data.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/logger.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/math.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/network.a
gopkg/pkg/${GO_PLATFORM}/github.com/bfix/gospel/parser.a
gopkg/src/github.com/bfix/gospel/LICENSE
gopkg/src/github.com/bfix/gospel/README.md
gopkg/src/github.com/bfix/gospel/bitcoin/addr.go
gopkg/src/github.com/bfix/gospel/bitcoin/addr_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/base58.go
gopkg/src/github.com/bfix/gospel/bitcoin/base58_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/curve.go
gopkg/src/github.com/bfix/gospel/bitcoin/curve_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/doc.go
gopkg/src/github.com/bfix/gospel/bitcoin/engine.go
gopkg/src/github.com/bfix/gospel/bitcoin/engine_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/exchange.go
gopkg/src/github.com/bfix/gospel/bitcoin/exchange_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/hash.go
gopkg/src/github.com/bfix/gospel/bitcoin/keys.go
gopkg/src/github.com/bfix/gospel/bitcoin/keys_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/raw.go
gopkg/src/github.com/bfix/gospel/bitcoin/raw_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/block.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/block_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/doc.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/local.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/local_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/node.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/node_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/script.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/script_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/session.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/session_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/transaction.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/transaction_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/types.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/wallet.go
gopkg/src/github.com/bfix/gospel/bitcoin/rpc/wallet_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/opcodes.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/run.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/run_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/script.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/script_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/script/stack.go
gopkg/src/github.com/bfix/gospel/bitcoin/wallet/coins.go
gopkg/src/github.com/bfix/gospel/bitcoin/wallet/hd.go
gopkg/src/github.com/bfix/gospel/bitcoin/wallet/hd_test.go
gopkg/src/github.com/bfix/gospel/bitcoin/wallet/seed.go
gopkg/src/github.com/bfix/gospel/bitcoin/wallet/seed_test.go
gopkg/src/github.com/bfix/gospel/concurrent/signal.go
gopkg/src/github.com/bfix/gospel/concurrent/signal_test.go
gopkg/src/github.com/bfix/gospel/crypto/counter.go
gopkg/src/github.com/bfix/gospel/crypto/counter_test.go
gopkg/src/github.com/bfix/gospel/crypto/doc.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/curve.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/curve_test.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/doc.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/keys.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/keys_test.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature_test.go
gopkg/src/github.com/bfix/gospel/crypto/ed25519/signature_test.json
gopkg/src/github.com/bfix/gospel/crypto/ed25519/util.go
gopkg/src/github.com/bfix/gospel/crypto/openpgp.go
gopkg/src/github.com/bfix/gospel/crypto/paillier.go
gopkg/src/github.com/bfix/gospel/crypto/paillier_test.go
gopkg/src/github.com/bfix/gospel/crypto/prime_field.go
gopkg/src/github.com/bfix/gospel/crypto/shared_secret.go
gopkg/src/github.com/bfix/gospel/crypto/shared_secret_test.go
gopkg/src/github.com/bfix/gospel/data/bloomfilter.go
gopkg/src/github.com/bfix/gospel/data/bloomfilter_test.go
gopkg/src/github.com/bfix/gospel/data/doc.go
gopkg/src/github.com/bfix/gospel/data/marshal.go
gopkg/src/github.com/bfix/gospel/data/marshal_test.go
gopkg/src/github.com/bfix/gospel/data/stack.go
gopkg/src/github.com/bfix/gospel/data/stack_test.go
gopkg/src/github.com/bfix/gospel/data/vector.go
gopkg/src/github.com/bfix/gospel/data/vector_test.go
gopkg/src/github.com/bfix/gospel/go.mod
gopkg/src/github.com/bfix/gospel/go.sum
gopkg/src/github.com/bfix/gospel/logger/log.go
gopkg/src/github.com/bfix/gospel/logger/log_test.go
gopkg/src/github.com/bfix/gospel/math/fft.go
gopkg/src/github.com/bfix/gospel/math/fft_test.go
gopkg/src/github.com/bfix/gospel/math/int.go
gopkg/src/github.com/bfix/gospel/math/int_test.go
gopkg/src/github.com/bfix/gospel/network/.gitignore
gopkg/src/github.com/bfix/gospel/network/doc.go
gopkg/src/github.com/bfix/gospel/network/net.go
gopkg/src/github.com/bfix/gospel/network/pop3.go
gopkg/src/github.com/bfix/gospel/network/service.go
gopkg/src/github.com/bfix/gospel/network/smtp.go
gopkg/src/github.com/bfix/gospel/network/socks.go
gopkg/src/github.com/bfix/gospel/network/tor.go
gopkg/src/github.com/bfix/gospel/network/util.go
gopkg/src/github.com/bfix/gospel/parser/data.go
gopkg/src/github.com/bfix/gospel/parser/data_test.go
gopkg/src/github.com/bfix/gospel/parser/doc.go
gopkg/src/github.com/bfix/gospel/parser/parser.go
gopkg/src/github.com/bfix/gospel/parser/parser_test.go