├── .dockerignore ├── .gitignore ├── .gitreview ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── bddtests ├── bddtests_test.go ├── common_steps.go ├── compose.go ├── configcli.go ├── configcli_steps.go ├── configurations_steps.go ├── context.go ├── customhandler.go ├── docker.go ├── fabcli.go ├── features │ ├── configcli.feature │ ├── configurationsnap.feature │ ├── invokeHttpSnap.feature │ └── invokeTxnSnap.feature ├── fixtures │ ├── .env │ ├── channel │ │ ├── configtx.yaml │ │ ├── crypto-config │ │ │ ├── ordererOrganizations │ │ │ │ └── example.com │ │ │ │ │ ├── ca │ │ │ │ │ ├── 92b8e7cabc157123e30894b4ffd3fa3e94cb499bda7b58f79e57d5f8942161e4_sk │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ ├── orderers │ │ │ │ │ └── orderer.example.com │ │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── 07bf421d4f12606226f23b274167a956e4421ade2f8bb94e5bf265e71fd39e55_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ │ ├── tlsca │ │ │ │ │ ├── 716843f79d51d0c78afbb42f963bffefacf44cd6df3a48a374b3a5c1f0b59b1d_sk │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ └── users │ │ │ │ │ └── Admin@example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── f4aa194b12d13d7c2b7b275a7115af5e6f728e11710716f2c754df4587891511_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ └── peerOrganizations │ │ │ │ ├── org1.example.com │ │ │ │ ├── ca │ │ │ │ │ ├── 8791d1363e89515f9afa042b0693a2c704bb8dd95d28f97d3549a2b9e3c4352d_sk │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ ├── peers │ │ │ │ │ ├── peer0.org1.example.com │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── a23272f898441edb0f415f028b3b3b42627d75e150dfbae23543234751814983_sk │ │ │ │ │ │ │ │ ├── abbe8ee0f86c227b1917d208921497603d2ff28f4ba8e902d703744c4a6fa7b7_sk │ │ │ │ │ │ │ │ └── httpsnap_eckey_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ ├── orderer-ca-cert.pem │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ └── peer1.org1.example.com │ │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── 322d7177700f59edfa128a42b437bc26f79f49523f59c54b6ebc5aa9ea2e2926_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ │ ├── 3f6a273ef185992857ce363958f1098610c028cf218fb97bd39147ef29c55cdc_sk │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── users │ │ │ │ │ ├── Admin@org1.example.com │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── ce142124e13093a3e13bc4708b0f2b26e1d4d2ea4d4cc59942790bfc0f3bcc6d_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ │ └── User1@org1.example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── abbe8ee0f86c227b1917d208921497603d2ff28f4ba8e902d703744c4a6fa7b7_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ └── org2.example.com │ │ │ │ ├── ca │ │ │ │ ├── a259204dbd6adb14c05a6e02de94567b2a9f7dbe9e6a063ba767d42bf0b544c1_sk │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ ├── peers │ │ │ │ ├── peer0.org2.example.com │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── 116d4be58ca68fb788fdddc4e10384812e09263654666ff0bdccc31deb7a8265_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── peer0.org2.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ └── peer1.org2.example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── e92288f967b17b068c0b8853417e917902bc8a52aa2aac6a1b123504eae691cf_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── 401cd9e9f5a5a9ad66b535639b9b7241d708ac8ab3a519c80910919050c806ec_sk │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ └── users │ │ │ │ ├── Admin@org2.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── 371ea01078b18f3b92c1fc8233dfa8d209d882ae40aeff4defd118ba9d572a15_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ └── User1@org2.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 7777a174c9fe40ab5abe33199a4fe82f1e0a7c45715e395e73a78cc3480d0021_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ ├── import-ec-keys.sh │ │ ├── mychannel.tx │ │ ├── mychannelOrg1MSPanchors.tx │ │ ├── mychannelOrg2MSPanchors.tx │ │ └── twoorgs.genesis.block │ ├── clientconfig │ │ └── config.yaml │ ├── config │ │ ├── ca-client-pkcs11.yaml │ │ ├── configcli │ │ │ ├── comp1.json │ │ │ ├── org1-config-update.json │ │ │ ├── org1-config.json │ │ │ └── org1-peerless-config.json │ │ ├── core-pkcs11.yaml │ │ ├── fabric │ │ │ └── core.yaml │ │ ├── mutual_tls │ │ │ ├── ca │ │ │ │ └── client_sdk_go-ca_root.pem │ │ │ └── client │ │ │ │ ├── client_sdk_go-key.pem │ │ │ │ └── client_sdk_go.pem │ │ ├── peer-pkcs11-entrypoint.sh │ │ ├── prometheus │ │ │ └── prometheus.yml │ │ └── snaps │ │ │ ├── configurationsnap │ │ │ ├── config.yaml │ │ │ └── core.yaml │ │ │ ├── eventsnap │ │ │ └── config.yaml │ │ │ ├── httpsnap │ │ │ ├── config.yaml │ │ │ └── tls │ │ │ │ ├── override │ │ │ │ └── abc │ │ │ │ │ └── abc.key │ │ │ │ └── test-client.key │ │ │ ├── snaps.json │ │ │ ├── snaps_update.json │ │ │ └── txnsnap │ │ │ ├── config.yaml │ │ │ ├── config_updated.yaml │ │ │ ├── testcerts │ │ │ └── ecert │ │ │ │ ├── cert.pem │ │ │ │ └── key.pem │ │ │ └── tls │ │ │ ├── ca-cert.pem │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ └── orderer-ca-cert.pem │ ├── docker-compose-pkcs11-unit-test.yml │ ├── docker-compose.yml │ ├── ecert │ │ ├── cert.pem │ │ └── key.pem │ ├── fabricca │ │ ├── ecert.pem │ │ └── enroll-csr.pem │ ├── httpserver │ │ ├── README.md │ │ ├── ca.crt │ │ ├── config.yaml │ │ ├── dummyserver.go │ │ ├── server.crt │ │ ├── server.key │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── fsnotify │ │ │ │ └── fsnotify │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fen.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── inotify.go │ │ │ │ │ ├── inotify_poller.go │ │ │ │ │ ├── kqueue.go │ │ │ │ │ ├── open_mode_bsd.go │ │ │ │ │ ├── open_mode_darwin.go │ │ │ │ │ └── windows.go │ │ │ ├── hashicorp │ │ │ │ └── hcl │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── hcl.go │ │ │ │ │ ├── hcl │ │ │ │ │ ├── ast │ │ │ │ │ │ ├── ast.go │ │ │ │ │ │ └── walk.go │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── parser.go │ │ │ │ │ ├── scanner │ │ │ │ │ │ └── scanner.go │ │ │ │ │ ├── strconv │ │ │ │ │ │ └── quote.go │ │ │ │ │ └── token │ │ │ │ │ │ ├── position.go │ │ │ │ │ │ └── token.go │ │ │ │ │ ├── json │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── flatten.go │ │ │ │ │ │ └── parser.go │ │ │ │ │ ├── scanner │ │ │ │ │ │ └── scanner.go │ │ │ │ │ └── token │ │ │ │ │ │ ├── position.go │ │ │ │ │ │ └── token.go │ │ │ │ │ ├── lex.go │ │ │ │ │ └── parse.go │ │ │ ├── magiconair │ │ │ │ └── properties │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── integrate.go │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── load.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── properties.go │ │ │ │ │ └── rangecheck.go │ │ │ ├── mitchellh │ │ │ │ └── mapstructure │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── mapstructure.go │ │ │ ├── pelletier │ │ │ │ ├── go-buffruneio │ │ │ │ │ ├── README.md │ │ │ │ │ └── buffruneio.go │ │ │ │ └── go-toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example-crlf.toml │ │ │ │ │ ├── example.toml │ │ │ │ │ ├── keysparsing.go │ │ │ │ │ ├── lexer.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.toml │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── position.go │ │ │ │ │ ├── test.sh │ │ │ │ │ ├── token.go │ │ │ │ │ ├── toml.go │ │ │ │ │ ├── tomltree_create.go │ │ │ │ │ └── tomltree_write.go │ │ │ └── spf13 │ │ │ │ ├── afero │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── afero.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── basepath.go │ │ │ │ ├── cacheOnReadFs.go │ │ │ │ ├── const_bsds.go │ │ │ │ ├── const_win_unix.go │ │ │ │ ├── copyOnWriteFs.go │ │ │ │ ├── httpFs.go │ │ │ │ ├── ioutil.go │ │ │ │ ├── match.go │ │ │ │ ├── mem │ │ │ │ │ ├── dir.go │ │ │ │ │ ├── dirmap.go │ │ │ │ │ └── file.go │ │ │ │ ├── memmap.go │ │ │ │ ├── memradix.go │ │ │ │ ├── os.go │ │ │ │ ├── path.go │ │ │ │ ├── readonlyfs.go │ │ │ │ ├── regexpfs.go │ │ │ │ ├── unionFile.go │ │ │ │ └── util.go │ │ │ │ ├── cast │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cast.go │ │ │ │ └── caste.go │ │ │ │ ├── jwalterweatherman │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── default_notepad.go │ │ │ │ ├── log_counter.go │ │ │ │ └── notepad.go │ │ │ │ ├── pflag │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float64.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ │ │ └── viper │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── flags.go │ │ │ │ ├── nohup.out │ │ │ │ ├── util.go │ │ │ │ └── viper.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── sys │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── unix │ │ │ │ │ ├── README.md │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── env_unset.go │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ ├── file_unix.go │ │ │ │ │ ├── flock.go │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ ├── openbsd_pledge.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsysctl_openbsd.go │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── text │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ └── unicode │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ ├── gopkg.in │ │ │ └── yaml.v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.libyaml │ │ │ │ ├── README.md │ │ │ │ ├── apic.go │ │ │ │ ├── decode.go │ │ │ │ ├── emitterc.go │ │ │ │ ├── encode.go │ │ │ │ ├── parserc.go │ │ │ │ ├── readerc.go │ │ │ │ ├── resolve.go │ │ │ │ ├── scannerc.go │ │ │ │ ├── sorter.go │ │ │ │ ├── writerc.go │ │ │ │ ├── yaml.go │ │ │ │ ├── yamlh.go │ │ │ │ └── yamlprivateh.go │ │ │ └── vendor.json │ ├── latest-env.sh │ ├── snapexample │ │ ├── bootstrap │ │ │ └── bootstrapscc.go │ │ └── txnsnapinvoker │ │ │ └── txnsnapinvoker.go │ └── src │ │ └── github.com │ │ ├── example_cc │ │ └── example_cc.go │ │ ├── httpsnaptest_cc │ │ └── httpsnaptest_cc.go │ │ └── readtest_cc │ │ └── readtest_cc.go ├── unsafe_query_steps.go └── utils.go ├── ci.properties ├── configmanager ├── api │ └── configmanager.go └── pkg │ ├── mgmt │ ├── configmanager.go │ ├── configmanager_test.go │ ├── util.go │ └── util_test.go │ ├── mocks │ └── mocks.go │ └── service │ ├── configmgmtservice.go │ ├── configmgmtservice_test.go │ └── metrics.go ├── configurationsnap ├── api │ └── config.go └── cmd │ ├── configcli │ ├── README.md │ ├── action │ │ ├── action.go │ │ └── mocks.go │ ├── cliconfig │ │ └── cliconfig.go │ ├── configcli.go │ ├── configkeyutil │ │ └── configkeyutil.go │ ├── deletecmd │ │ ├── deletecmd.go │ │ └── deletecmd_test.go │ ├── generatecsr │ │ ├── generateCSR.go │ │ └── generateCSR_test.go │ ├── querycmd │ │ ├── printer.go │ │ ├── querycmd.go │ │ └── querycmd_test.go │ ├── sampleconfig │ │ ├── org1-config-embedded.json │ │ ├── org1-config-update.json │ │ ├── org1-config.json │ │ ├── org1-peer0-app1-config.yaml │ │ ├── org1-peer0-app2-config.json │ │ ├── org1-peer0-app3-config.yaml │ │ ├── org1-peer1-app1-config.yaml │ │ ├── org1-peer1-app2-config.json │ │ └── org1-peerless-config.json │ ├── testdata │ │ ├── clientconfig │ │ │ └── config.yaml │ │ └── crypto-config │ │ │ ├── tlsca.org1.example.com-cert.pem │ │ │ └── tlsca.org2.example.com-cert.pem │ └── updatecmd │ │ ├── updatecmd.go │ │ └── updatecmd_test.go │ └── configurationscc │ ├── config │ ├── config.go │ └── config_test.go │ ├── configurationscc.go │ ├── configurationscc_test.go │ ├── listener │ └── cclistener.go │ ├── metrics.go │ └── sampleconfig │ ├── config.yaml │ └── core.yaml ├── go.mod ├── go.sum ├── healthcheck ├── healthcheck.go └── healthcheck_test.go ├── httpsnap ├── api │ ├── api.go │ └── config.go └── cmd │ ├── config │ ├── config.go │ ├── config.yaml │ ├── config_test.go │ └── keys │ │ └── tls │ │ ├── override │ │ └── abc │ │ │ └── abc.key │ │ └── test-client.key │ ├── httpsnap.go │ ├── httpsnap_test.go │ ├── httpsnapservice │ ├── cache.go │ ├── httpsnapservice.go │ ├── httpsnapservice_test.go │ ├── invoker.go │ ├── metrics.go │ └── tls.go │ ├── mocks.go │ ├── sampleconfig │ ├── config.yaml │ ├── core-config-pkcs11 │ │ └── core.yaml │ ├── core.yaml │ ├── ec-keys │ │ └── client.key │ ├── msp │ │ └── keystore │ │ │ ├── abc.key │ │ │ └── test-client.key │ ├── samplecrypto_pkcs11.go │ ├── samplecrypto_sw.go │ └── tls │ │ ├── ca.crt │ │ └── test-client-cert.crt │ └── test-data │ └── httpserver │ ├── expired │ ├── server.crt │ ├── server.key │ └── test-client.crt │ ├── server.crt │ ├── server.key │ └── test-client.crt ├── images └── fabric-snaps │ └── Dockerfile ├── membershipsnap ├── api │ └── membership │ │ ├── membership.go │ │ ├── peers.pb.go │ │ └── peers.proto ├── cmd │ ├── membershipsnap.go │ ├── membershipsnap_test.go │ └── mocks.go └── pkg │ ├── discovery │ └── local │ │ └── service │ │ ├── channelpeer │ │ └── channelpeer.go │ │ └── service.go │ ├── membership │ ├── go.mod │ ├── go.sum │ ├── membership.go │ ├── membership_test.go │ ├── mocks.go │ ├── mspidmgr.go │ └── mspidmgr_test.go │ └── mocks │ └── mockchpeer.go ├── metrics ├── cmd │ └── gendoc │ │ ├── .gitignore │ │ └── main.go └── pkg │ └── util │ └── util.go ├── metrics_reference.rst ├── metrics_reference.rst.tmpl ├── mocks ├── event │ ├── mockproducer │ │ └── mockproducer.go │ └── mockservice │ │ ├── eventservice │ │ └── eventservice.go │ │ └── localservice │ │ ├── localservice.go │ │ └── localservice_test.go ├── mockbcinfo │ └── mockbcinfo.go ├── mockchinfo │ └── mockchinfo.go ├── mockmembership │ └── mockmembership.go ├── mockprovider │ └── mockprovider.go └── mockstub │ └── mockstub.go ├── scripts ├── build_plugins.sh ├── check_license.sh ├── check_lint.sh ├── check_spelling.sh ├── check_version.sh ├── dependencies.sh ├── generate_channeltx.sh ├── integration.sh ├── metrics_doc.sh ├── move_snaps.sh ├── prune_licenses.sh ├── replace_module.sh ├── unit-pkcs11.sh └── unit.sh ├── transactionsnap ├── README.md ├── api │ ├── api.go │ ├── client.go │ ├── config.go │ └── peerfilter.go ├── cmd │ ├── sampleconfig │ │ ├── config.yaml │ │ ├── core-config-pkcs11 │ │ │ └── core.yaml │ │ ├── core.yaml │ │ ├── msp │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── cert.pem │ │ ├── samplecrypto_pkcs11.go │ │ ├── samplecrypto_sw.go │ │ └── tls │ │ │ ├── ca-cert.pem │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ └── orderer-ca-cert.pem │ ├── transactionsnap.go │ └── transactionsnap_test.go └── pkg │ ├── client │ ├── cache.go │ ├── chprovider │ │ ├── cachekey.go │ │ ├── chprovider.go │ │ └── eventserviceref.go │ ├── client.go │ ├── client_test.go │ ├── clientwrapper.go │ ├── factories │ │ ├── customcorepkg.go │ │ ├── customcryptosuiteprovider.go │ │ ├── customcryptosuiteprovider_test.go │ │ ├── custominfraprovider.go │ │ └── msp │ │ │ ├── customidentitymgr.go │ │ │ ├── customidentitymgr_test.go │ │ │ ├── custommsppkg.go │ │ │ └── custommspprovider.go │ ├── handler │ │ ├── checkforcommit.go │ │ ├── committx.go │ │ ├── peerfilter.go │ │ └── preendorsed.go │ ├── localprovider │ │ └── localprovider.go │ ├── metrics.go │ └── peerfilter │ │ ├── minblockheight │ │ ├── minblockheight.go │ │ └── minblockheight_test.go │ │ └── peerfilter.go │ ├── config │ ├── config.go │ ├── config_test.go │ ├── config_testing_env.go │ ├── peerConfig_test.go │ └── peerconfig.go │ ├── initbcinfo │ ├── blockchaininfo.go │ └── blockchaininfo_test.go │ ├── mocks │ ├── mockendorserserver.go │ ├── mockpeer.go │ └── mockprovider.go │ └── txsnapservice │ ├── txnsnapservice_test.go │ └── txsnapservice.go └── util ├── bcinfo ├── bcinfo.go └── bcinfo_test.go ├── configcache ├── configcache.go ├── configcache_test.go ├── testdata │ └── core.yaml └── testfabricconfig │ └── core.yaml ├── errors ├── codes.go ├── errors.go └── errors_test.go ├── refcount ├── refcount.go └── refcount_test.go ├── rolesmgr ├── go.mod ├── go.sum └── rolesmgr.go ├── statemgr ├── dbprovider │ ├── dbprovider.go │ └── dbprovider_test.go ├── go.mod ├── go.sum └── statemgr.go ├── utils.go └── utils_test.go /.dockerignore: -------------------------------------------------------------------------------- 1 | bddtests/* -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/.gitreview -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/README.md -------------------------------------------------------------------------------- /bddtests/bddtests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/bddtests_test.go -------------------------------------------------------------------------------- /bddtests/common_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/common_steps.go -------------------------------------------------------------------------------- /bddtests/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/compose.go -------------------------------------------------------------------------------- /bddtests/configcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/configcli.go -------------------------------------------------------------------------------- /bddtests/configcli_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/configcli_steps.go -------------------------------------------------------------------------------- /bddtests/configurations_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/configurations_steps.go -------------------------------------------------------------------------------- /bddtests/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/context.go -------------------------------------------------------------------------------- /bddtests/customhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/customhandler.go -------------------------------------------------------------------------------- /bddtests/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/docker.go -------------------------------------------------------------------------------- /bddtests/fabcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fabcli.go -------------------------------------------------------------------------------- /bddtests/features/configcli.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/features/configcli.feature -------------------------------------------------------------------------------- /bddtests/features/configurationsnap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/features/configurationsnap.feature -------------------------------------------------------------------------------- /bddtests/features/invokeHttpSnap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/features/invokeHttpSnap.feature -------------------------------------------------------------------------------- /bddtests/features/invokeTxnSnap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/features/invokeTxnSnap.feature -------------------------------------------------------------------------------- /bddtests/fixtures/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/.env -------------------------------------------------------------------------------- /bddtests/fixtures/channel/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/configtx.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/orderer-ca-cert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/channel/import-ec-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/import-ec-keys.sh -------------------------------------------------------------------------------- /bddtests/fixtures/channel/mychannel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/mychannel.tx -------------------------------------------------------------------------------- /bddtests/fixtures/channel/mychannelOrg1MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/mychannelOrg1MSPanchors.tx -------------------------------------------------------------------------------- /bddtests/fixtures/channel/mychannelOrg2MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/mychannelOrg2MSPanchors.tx -------------------------------------------------------------------------------- /bddtests/fixtures/channel/twoorgs.genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/channel/twoorgs.genesis.block -------------------------------------------------------------------------------- /bddtests/fixtures/clientconfig/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/clientconfig/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/ca-client-pkcs11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/ca-client-pkcs11.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/configcli/comp1.json: -------------------------------------------------------------------------------- 1 | { 2 | "key1":"comp1 data ver 1" 3 | } 4 | -------------------------------------------------------------------------------- /bddtests/fixtures/config/configcli/org1-config-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/configcli/org1-config-update.json -------------------------------------------------------------------------------- /bddtests/fixtures/config/configcli/org1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/configcli/org1-config.json -------------------------------------------------------------------------------- /bddtests/fixtures/config/configcli/org1-peerless-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/configcli/org1-peerless-config.json -------------------------------------------------------------------------------- /bddtests/fixtures/config/core-pkcs11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/core-pkcs11.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/fabric/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/fabric/core.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/mutual_tls/ca/client_sdk_go-ca_root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/mutual_tls/ca/client_sdk_go-ca_root.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/mutual_tls/client/client_sdk_go-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/mutual_tls/client/client_sdk_go-key.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/mutual_tls/client/client_sdk_go.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/mutual_tls/client/client_sdk_go.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/peer-pkcs11-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/peer-pkcs11-entrypoint.sh -------------------------------------------------------------------------------- /bddtests/fixtures/config/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/prometheus/prometheus.yml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/configurationsnap/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/configurationsnap/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/configurationsnap/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/configurationsnap/core.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/eventsnap/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/eventsnap/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/httpsnap/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/httpsnap/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/httpsnap/tls/override/abc/abc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/httpsnap/tls/override/abc/abc.key -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/httpsnap/tls/test-client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/httpsnap/tls/test-client.key -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/snaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/snaps.json -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/snaps_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/snaps_update.json -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/config_updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/config_updated.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/testcerts/ecert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/testcerts/ecert/cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/testcerts/ecert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/testcerts/ecert/key.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/tls/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/tls/ca-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/tls/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/tls/cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/tls/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/tls/key.pem -------------------------------------------------------------------------------- /bddtests/fixtures/config/snaps/txnsnap/tls/orderer-ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/config/snaps/txnsnap/tls/orderer-ca-cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/docker-compose-pkcs11-unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/docker-compose-pkcs11-unit-test.yml -------------------------------------------------------------------------------- /bddtests/fixtures/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/docker-compose.yml -------------------------------------------------------------------------------- /bddtests/fixtures/ecert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/ecert/cert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/ecert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/ecert/key.pem -------------------------------------------------------------------------------- /bddtests/fixtures/fabricca/ecert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/fabricca/ecert.pem -------------------------------------------------------------------------------- /bddtests/fixtures/fabricca/enroll-csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/fabricca/enroll-csr.pem -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/ca.crt -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/config.yaml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/dummyserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/dummyserver.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/server.crt -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/server.key -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/inotify_poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/inotify_poller.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/token/position.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/parser/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/parser/flatten.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/parser/parser.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/token/position.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/CHANGELOG.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/decode.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/integrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/integrate.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/parser.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/properties.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/rangecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/magiconair/properties/rangecheck.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/decode_hooks.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/mitchellh/mapstructure/mapstructure.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-buffruneio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-buffruneio/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-buffruneio/buffruneio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-buffruneio/buffruneio.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/example-crlf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/example-crlf.toml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/example.toml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/keysparsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/keysparsing.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/lexer.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/marshal.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/marshal_test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/marshal_test.toml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/parser.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/position.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/test.sh -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/token.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/tomltree_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/tomltree_create.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/tomltree_write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/pelletier/go-toml/tomltree_write.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/cacheOnReadFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/cacheOnReadFs.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/const_win_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/const_win_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/copyOnWriteFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/copyOnWriteFs.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/memradix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/memradix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/default_notepad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/default_notepad.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/log_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/log_counter.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/notepad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/jwalterweatherman/notepad.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/nohup.out -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/composition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/composition.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/readwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/readwriter.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/tables.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /bddtests/fixtures/httpserver/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/httpserver/vendor/vendor.json -------------------------------------------------------------------------------- /bddtests/fixtures/latest-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/latest-env.sh -------------------------------------------------------------------------------- /bddtests/fixtures/snapexample/bootstrap/bootstrapscc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/snapexample/bootstrap/bootstrapscc.go -------------------------------------------------------------------------------- /bddtests/fixtures/snapexample/txnsnapinvoker/txnsnapinvoker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/snapexample/txnsnapinvoker/txnsnapinvoker.go -------------------------------------------------------------------------------- /bddtests/fixtures/src/github.com/example_cc/example_cc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/src/github.com/example_cc/example_cc.go -------------------------------------------------------------------------------- /bddtests/fixtures/src/github.com/httpsnaptest_cc/httpsnaptest_cc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/src/github.com/httpsnaptest_cc/httpsnaptest_cc.go -------------------------------------------------------------------------------- /bddtests/fixtures/src/github.com/readtest_cc/readtest_cc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/fixtures/src/github.com/readtest_cc/readtest_cc.go -------------------------------------------------------------------------------- /bddtests/unsafe_query_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/unsafe_query_steps.go -------------------------------------------------------------------------------- /bddtests/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/bddtests/utils.go -------------------------------------------------------------------------------- /ci.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/ci.properties -------------------------------------------------------------------------------- /configmanager/api/configmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/api/configmanager.go -------------------------------------------------------------------------------- /configmanager/pkg/mgmt/configmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/mgmt/configmanager.go -------------------------------------------------------------------------------- /configmanager/pkg/mgmt/configmanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/mgmt/configmanager_test.go -------------------------------------------------------------------------------- /configmanager/pkg/mgmt/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/mgmt/util.go -------------------------------------------------------------------------------- /configmanager/pkg/mgmt/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/mgmt/util_test.go -------------------------------------------------------------------------------- /configmanager/pkg/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/mocks/mocks.go -------------------------------------------------------------------------------- /configmanager/pkg/service/configmgmtservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/service/configmgmtservice.go -------------------------------------------------------------------------------- /configmanager/pkg/service/configmgmtservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/service/configmgmtservice_test.go -------------------------------------------------------------------------------- /configmanager/pkg/service/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configmanager/pkg/service/metrics.go -------------------------------------------------------------------------------- /configurationsnap/api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/api/config.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/README.md -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/action/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/action/action.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/action/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/action/mocks.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/cliconfig/cliconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/cliconfig/cliconfig.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/configcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/configcli.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/configkeyutil/configkeyutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/configkeyutil/configkeyutil.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/deletecmd/deletecmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/deletecmd/deletecmd.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/deletecmd/deletecmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/deletecmd/deletecmd_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/generatecsr/generateCSR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/generatecsr/generateCSR.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/generatecsr/generateCSR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/generatecsr/generateCSR_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/querycmd/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/querycmd/printer.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/querycmd/querycmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/querycmd/querycmd.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/querycmd/querycmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/querycmd/querycmd_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-config-embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-config-embedded.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-config-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-config-update.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-config.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app1-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app1-config.yaml -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app2-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app2-config.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app3-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peer0-app3-config.yaml -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peer1-app1-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peer1-app1-config.yaml -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peer1-app2-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peer1-app2-config.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/sampleconfig/org1-peerless-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/sampleconfig/org1-peerless-config.json -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/testdata/clientconfig/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/testdata/clientconfig/config.yaml -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/testdata/crypto-config/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/testdata/crypto-config/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/testdata/crypto-config/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/testdata/crypto-config/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/updatecmd/updatecmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/updatecmd/updatecmd.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configcli/updatecmd/updatecmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configcli/updatecmd/updatecmd_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/config/config.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/config/config_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/configurationscc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/configurationscc.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/configurationscc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/configurationscc_test.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/listener/cclistener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/listener/cclistener.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/metrics.go -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/sampleconfig/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/sampleconfig/config.yaml -------------------------------------------------------------------------------- /configurationsnap/cmd/configurationscc/sampleconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/configurationsnap/cmd/configurationscc/sampleconfig/core.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/go.sum -------------------------------------------------------------------------------- /healthcheck/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/healthcheck/healthcheck.go -------------------------------------------------------------------------------- /healthcheck/healthcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/healthcheck/healthcheck_test.go -------------------------------------------------------------------------------- /httpsnap/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/api/api.go -------------------------------------------------------------------------------- /httpsnap/api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/api/config.go -------------------------------------------------------------------------------- /httpsnap/cmd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/config/config.go -------------------------------------------------------------------------------- /httpsnap/cmd/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/config/config.yaml -------------------------------------------------------------------------------- /httpsnap/cmd/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/config/config_test.go -------------------------------------------------------------------------------- /httpsnap/cmd/config/keys/tls/override/abc/abc.key: -------------------------------------------------------------------------------- 1 | abcKey -------------------------------------------------------------------------------- /httpsnap/cmd/config/keys/tls/test-client.key: -------------------------------------------------------------------------------- 1 | clientKey -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnap.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnap_test.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/cache.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/httpsnapservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/httpsnapservice.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/httpsnapservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/httpsnapservice_test.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/invoker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/invoker.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/metrics.go -------------------------------------------------------------------------------- /httpsnap/cmd/httpsnapservice/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/httpsnapservice/tls.go -------------------------------------------------------------------------------- /httpsnap/cmd/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/mocks.go -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/config.yaml -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/core-config-pkcs11/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/core-config-pkcs11/core.yaml -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/core.yaml -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/ec-keys/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/ec-keys/client.key -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/msp/keystore/abc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/msp/keystore/abc.key -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/msp/keystore/test-client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/msp/keystore/test-client.key -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/samplecrypto_pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/samplecrypto_pkcs11.go -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/samplecrypto_sw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/samplecrypto_sw.go -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/tls/ca.crt -------------------------------------------------------------------------------- /httpsnap/cmd/sampleconfig/tls/test-client-cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/sampleconfig/tls/test-client-cert.crt -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/expired/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/expired/server.crt -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/expired/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/expired/server.key -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/expired/test-client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/expired/test-client.crt -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/server.crt -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/server.key -------------------------------------------------------------------------------- /httpsnap/cmd/test-data/httpserver/test-client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/httpsnap/cmd/test-data/httpserver/test-client.crt -------------------------------------------------------------------------------- /images/fabric-snaps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/images/fabric-snaps/Dockerfile -------------------------------------------------------------------------------- /membershipsnap/api/membership/membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/api/membership/membership.go -------------------------------------------------------------------------------- /membershipsnap/api/membership/peers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/api/membership/peers.pb.go -------------------------------------------------------------------------------- /membershipsnap/api/membership/peers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/api/membership/peers.proto -------------------------------------------------------------------------------- /membershipsnap/cmd/membershipsnap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/cmd/membershipsnap.go -------------------------------------------------------------------------------- /membershipsnap/cmd/membershipsnap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/cmd/membershipsnap_test.go -------------------------------------------------------------------------------- /membershipsnap/cmd/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/cmd/mocks.go -------------------------------------------------------------------------------- /membershipsnap/pkg/discovery/local/service/channelpeer/channelpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/discovery/local/service/channelpeer/channelpeer.go -------------------------------------------------------------------------------- /membershipsnap/pkg/discovery/local/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/discovery/local/service/service.go -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/go.mod -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/go.sum -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/membership.go -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/membership_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/membership_test.go -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/mocks.go -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/mspidmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/mspidmgr.go -------------------------------------------------------------------------------- /membershipsnap/pkg/membership/mspidmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/membership/mspidmgr_test.go -------------------------------------------------------------------------------- /membershipsnap/pkg/mocks/mockchpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/membershipsnap/pkg/mocks/mockchpeer.go -------------------------------------------------------------------------------- /metrics/cmd/gendoc/.gitignore: -------------------------------------------------------------------------------- 1 | #SPDX-License-Identifier: Apache-2.0 2 | 3 | gendoc 4 | -------------------------------------------------------------------------------- /metrics/cmd/gendoc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/metrics/cmd/gendoc/main.go -------------------------------------------------------------------------------- /metrics/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/metrics/pkg/util/util.go -------------------------------------------------------------------------------- /metrics_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/metrics_reference.rst -------------------------------------------------------------------------------- /metrics_reference.rst.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/metrics_reference.rst.tmpl -------------------------------------------------------------------------------- /mocks/event/mockproducer/mockproducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/event/mockproducer/mockproducer.go -------------------------------------------------------------------------------- /mocks/event/mockservice/eventservice/eventservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/event/mockservice/eventservice/eventservice.go -------------------------------------------------------------------------------- /mocks/event/mockservice/localservice/localservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/event/mockservice/localservice/localservice.go -------------------------------------------------------------------------------- /mocks/event/mockservice/localservice/localservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/event/mockservice/localservice/localservice_test.go -------------------------------------------------------------------------------- /mocks/mockbcinfo/mockbcinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/mockbcinfo/mockbcinfo.go -------------------------------------------------------------------------------- /mocks/mockchinfo/mockchinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/mockchinfo/mockchinfo.go -------------------------------------------------------------------------------- /mocks/mockmembership/mockmembership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/mockmembership/mockmembership.go -------------------------------------------------------------------------------- /mocks/mockprovider/mockprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/mockprovider/mockprovider.go -------------------------------------------------------------------------------- /mocks/mockstub/mockstub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/mocks/mockstub/mockstub.go -------------------------------------------------------------------------------- /scripts/build_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/build_plugins.sh -------------------------------------------------------------------------------- /scripts/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/check_license.sh -------------------------------------------------------------------------------- /scripts/check_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/check_lint.sh -------------------------------------------------------------------------------- /scripts/check_spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/check_spelling.sh -------------------------------------------------------------------------------- /scripts/check_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/check_version.sh -------------------------------------------------------------------------------- /scripts/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/dependencies.sh -------------------------------------------------------------------------------- /scripts/generate_channeltx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/generate_channeltx.sh -------------------------------------------------------------------------------- /scripts/integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/integration.sh -------------------------------------------------------------------------------- /scripts/metrics_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/metrics_doc.sh -------------------------------------------------------------------------------- /scripts/move_snaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/move_snaps.sh -------------------------------------------------------------------------------- /scripts/prune_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/prune_licenses.sh -------------------------------------------------------------------------------- /scripts/replace_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/replace_module.sh -------------------------------------------------------------------------------- /scripts/unit-pkcs11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/unit-pkcs11.sh -------------------------------------------------------------------------------- /scripts/unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/scripts/unit.sh -------------------------------------------------------------------------------- /transactionsnap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/README.md -------------------------------------------------------------------------------- /transactionsnap/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/api/api.go -------------------------------------------------------------------------------- /transactionsnap/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/api/client.go -------------------------------------------------------------------------------- /transactionsnap/api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/api/config.go -------------------------------------------------------------------------------- /transactionsnap/api/peerfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/api/peerfilter.go -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/config.yaml -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/core-config-pkcs11/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/core-config-pkcs11/core.yaml -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/core.yaml -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/msp/keystore/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/msp/keystore/key.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/msp/signcerts/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/msp/signcerts/cert.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/samplecrypto_pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/samplecrypto_pkcs11.go -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/samplecrypto_sw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/samplecrypto_sw.go -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/tls/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/tls/ca-cert.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/tls/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/tls/cert.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/tls/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/tls/key.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/sampleconfig/tls/orderer-ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/sampleconfig/tls/orderer-ca-cert.pem -------------------------------------------------------------------------------- /transactionsnap/cmd/transactionsnap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/transactionsnap.go -------------------------------------------------------------------------------- /transactionsnap/cmd/transactionsnap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/cmd/transactionsnap_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/cache.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/chprovider/cachekey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/chprovider/cachekey.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/chprovider/chprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/chprovider/chprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/chprovider/eventserviceref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/chprovider/eventserviceref.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/client.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/client_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/clientwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/clientwrapper.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/customcorepkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/customcorepkg.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/customcryptosuiteprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/customcryptosuiteprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/customcryptosuiteprovider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/customcryptosuiteprovider_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/custominfraprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/custominfraprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/msp/customidentitymgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/msp/customidentitymgr.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/msp/customidentitymgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/msp/customidentitymgr_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/msp/custommsppkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/msp/custommsppkg.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/factories/msp/custommspprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/factories/msp/custommspprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/handler/checkforcommit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/handler/checkforcommit.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/handler/committx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/handler/committx.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/handler/peerfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/handler/peerfilter.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/handler/preendorsed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/handler/preendorsed.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/localprovider/localprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/localprovider/localprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/metrics.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/peerfilter/minblockheight/minblockheight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/peerfilter/minblockheight/minblockheight.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/peerfilter/minblockheight/minblockheight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/peerfilter/minblockheight/minblockheight_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/client/peerfilter/peerfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/client/peerfilter/peerfilter.go -------------------------------------------------------------------------------- /transactionsnap/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/config/config.go -------------------------------------------------------------------------------- /transactionsnap/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/config/config_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/config/config_testing_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/config/config_testing_env.go -------------------------------------------------------------------------------- /transactionsnap/pkg/config/peerConfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/config/peerConfig_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/config/peerconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/config/peerconfig.go -------------------------------------------------------------------------------- /transactionsnap/pkg/initbcinfo/blockchaininfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/initbcinfo/blockchaininfo.go -------------------------------------------------------------------------------- /transactionsnap/pkg/initbcinfo/blockchaininfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/initbcinfo/blockchaininfo_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/mocks/mockendorserserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/mocks/mockendorserserver.go -------------------------------------------------------------------------------- /transactionsnap/pkg/mocks/mockpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/mocks/mockpeer.go -------------------------------------------------------------------------------- /transactionsnap/pkg/mocks/mockprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/mocks/mockprovider.go -------------------------------------------------------------------------------- /transactionsnap/pkg/txsnapservice/txnsnapservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/txsnapservice/txnsnapservice_test.go -------------------------------------------------------------------------------- /transactionsnap/pkg/txsnapservice/txsnapservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/transactionsnap/pkg/txsnapservice/txsnapservice.go -------------------------------------------------------------------------------- /util/bcinfo/bcinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/bcinfo/bcinfo.go -------------------------------------------------------------------------------- /util/bcinfo/bcinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/bcinfo/bcinfo_test.go -------------------------------------------------------------------------------- /util/configcache/configcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/configcache/configcache.go -------------------------------------------------------------------------------- /util/configcache/configcache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/configcache/configcache_test.go -------------------------------------------------------------------------------- /util/configcache/testdata/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/configcache/testdata/core.yaml -------------------------------------------------------------------------------- /util/configcache/testfabricconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/configcache/testfabricconfig/core.yaml -------------------------------------------------------------------------------- /util/errors/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/errors/codes.go -------------------------------------------------------------------------------- /util/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/errors/errors.go -------------------------------------------------------------------------------- /util/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/errors/errors_test.go -------------------------------------------------------------------------------- /util/refcount/refcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/refcount/refcount.go -------------------------------------------------------------------------------- /util/refcount/refcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/refcount/refcount_test.go -------------------------------------------------------------------------------- /util/rolesmgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/rolesmgr/go.mod -------------------------------------------------------------------------------- /util/rolesmgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/rolesmgr/go.sum -------------------------------------------------------------------------------- /util/rolesmgr/rolesmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/rolesmgr/rolesmgr.go -------------------------------------------------------------------------------- /util/statemgr/dbprovider/dbprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/statemgr/dbprovider/dbprovider.go -------------------------------------------------------------------------------- /util/statemgr/dbprovider/dbprovider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/statemgr/dbprovider/dbprovider_test.go -------------------------------------------------------------------------------- /util/statemgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/statemgr/go.mod -------------------------------------------------------------------------------- /util/statemgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/statemgr/go.sum -------------------------------------------------------------------------------- /util/statemgr/statemgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/statemgr/statemgr.go -------------------------------------------------------------------------------- /util/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/utils.go -------------------------------------------------------------------------------- /util/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securekey/fabric-snaps/HEAD/util/utils_test.go --------------------------------------------------------------------------------