├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs └── org.eclipse.m2e.core.prefs ├── README.md ├── cacerts ├── admincert.pem └── cacert.pem ├── client.iml ├── config.properties ├── pom.xml └── src ├── main └── java │ ├── com │ └── cs │ │ └── fabric │ │ ├── client │ │ ├── ConstructChannel.java │ │ ├── DeployChaincode.java │ │ ├── DocumentArrival.java │ │ ├── Inspection.java │ │ ├── InvokeChainCode.java │ │ ├── Payment.java │ │ ├── PresentDocuments.java │ │ ├── QueryByRefNo.java │ │ ├── SetupUsers.java │ │ ├── Shipping.java │ │ └── utils │ │ │ └── ClientHelper.java │ │ ├── sdk │ │ └── utils │ │ │ ├── ClientConfig.java │ │ │ └── ClientConfigHelper.java │ │ └── sdkintegration │ │ ├── SampleOrg.java │ │ ├── SampleStore.java │ │ └── SampleUser.java │ ├── commons-logging.properties │ └── log4j.properties └── test ├── fixture ├── sample_chaincode_endorsement_policies │ ├── badusertestCCEPPolicy.yaml │ └── testCCEPPolicy.yaml ├── sdkintegration │ ├── .env │ ├── chaincodeendorsementpolicy.yaml │ ├── docker-compose.yaml │ ├── e2e-2Orgs │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ ├── v1.0 │ │ │ ├── bar.tx │ │ │ ├── crypto-config │ │ │ │ ├── ordererOrganizations │ │ │ │ │ └── example.com │ │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── ca.example.com-cert.pem │ │ │ │ │ │ └── e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk │ │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ ├── orderers │ │ │ │ │ │ └── orderer.example.com │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ └── 30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ ├── tlsca │ │ │ │ │ │ ├── 79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ └── users │ │ │ │ │ │ └── Admin@example.com │ │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ └── peerOrganizations │ │ │ │ │ ├── org1.example.com │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── ca.org1.example.com-cert.pem │ │ │ │ │ │ └── fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.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 │ │ │ │ │ │ │ │ │ └── 46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ └── peer1.org1.example.com │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ └── 12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ ├── tlsca │ │ │ │ │ │ ├── 418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_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 │ │ │ │ │ │ │ │ └── 6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── ca.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 │ │ │ │ │ │ │ └── f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ │ └── org2.example.com │ │ │ │ │ ├── ca │ │ │ │ │ ├── b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── ca.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 │ │ │ │ │ │ │ │ └── fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── peer0.org2.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── ca.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 │ │ │ │ │ │ │ └── 3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ │ ├── tlsca │ │ │ │ │ ├── 849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_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 │ │ │ │ │ │ │ └── b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── ca.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 │ │ │ │ │ │ └── 9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ ├── foo.tx │ │ │ └── orderer.block │ │ └── v1.1 │ │ │ ├── bar.tx │ │ │ ├── crypto-config │ │ │ ├── ordererOrganizations │ │ │ │ └── example.com │ │ │ │ │ ├── ca │ │ │ │ │ ├── 19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_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 │ │ │ │ │ │ │ └── 2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ │ ├── tlsca │ │ │ │ │ ├── da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ └── users │ │ │ │ │ └── Admin@example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── client.crt │ │ │ │ │ └── client.key │ │ │ └── peerOrganizations │ │ │ │ ├── org1.example.com │ │ │ │ ├── ca │ │ │ │ │ ├── ca.org1.example.com-cert.pem │ │ │ │ │ └── fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ └── a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ └── peer1.org1.example.com │ │ │ │ │ │ ├── msp │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ └── d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ │ ├── 1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_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 │ │ │ │ │ │ │ └── 581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── client.crt │ │ │ │ │ │ └── client.key │ │ │ │ │ └── User1@org1.example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── client.crt │ │ │ │ │ └── client.key │ │ │ │ └── org2.example.com │ │ │ │ ├── ca │ │ │ │ ├── b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_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 │ │ │ │ │ │ │ └── 5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_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 │ │ │ │ │ │ └── 2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── 6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_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 │ │ │ │ │ │ └── 5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── client.crt │ │ │ │ │ └── client.key │ │ │ │ └── User1@org2.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ ├── foo.tx │ │ │ └── orderer.block │ ├── gocc │ │ └── sample2 │ │ │ └── src │ │ │ └── github.com │ │ │ └── trade_finance │ │ │ └── trade_finance.go │ ├── network_configs │ │ ├── network-config-tls.yaml │ │ ├── network-config.json │ │ └── network-config.yaml │ └── peer-base │ │ └── peer-base.yaml └── src │ ├── downdc.sh │ └── rundc.sh └── resources ├── bad-ca.crt ├── ca-rsa.crt ├── ca-rsa.key ├── ca.crt ├── ca.key ├── commons-logging.properties ├── create_EC_key_cert_for_testing.md ├── keypair-signed-rsa.crt ├── keypair-signed-rsa.key ├── keypair-signed.crt ├── keypair-signed.key ├── log4j.properties ├── notsigned.crt ├── notsigned.key ├── policyBitsAdmin └── policyBitsMember /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hyperledger 2 | -------------------------------------------------------------------------------- /cacerts/admincert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/cacerts/admincert.pem -------------------------------------------------------------------------------- /cacerts/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/cacerts/cacert.pem -------------------------------------------------------------------------------- /client.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/client.iml -------------------------------------------------------------------------------- /config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/config.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/ConstructChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/ConstructChannel.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/DeployChaincode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/DeployChaincode.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/DocumentArrival.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/DocumentArrival.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/Inspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/Inspection.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/InvokeChainCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/InvokeChainCode.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/Payment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/Payment.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/PresentDocuments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/PresentDocuments.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/QueryByRefNo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/QueryByRefNo.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/SetupUsers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/SetupUsers.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/Shipping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/Shipping.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/client/utils/ClientHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/client/utils/ClientHelper.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/sdk/utils/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/sdk/utils/ClientConfig.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/sdk/utils/ClientConfigHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/sdk/utils/ClientConfigHelper.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/sdkintegration/SampleOrg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/sdkintegration/SampleOrg.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/sdkintegration/SampleStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/sdkintegration/SampleStore.java -------------------------------------------------------------------------------- /src/main/java/com/cs/fabric/sdkintegration/SampleUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/com/cs/fabric/sdkintegration/SampleUser.java -------------------------------------------------------------------------------- /src/main/java/commons-logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/commons-logging.properties -------------------------------------------------------------------------------- /src/main/java/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/main/java/log4j.properties -------------------------------------------------------------------------------- /src/test/fixture/sample_chaincode_endorsement_policies/badusertestCCEPPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sample_chaincode_endorsement_policies/badusertestCCEPPolicy.yaml -------------------------------------------------------------------------------- /src/test/fixture/sample_chaincode_endorsement_policies/testCCEPPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sample_chaincode_endorsement_policies/testCCEPPolicy.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/.env -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/chaincodeendorsementpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/chaincodeendorsementpolicy.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/docker-compose.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/configtx.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/bar.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/bar.tx -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/foo.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/foo.tx -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/orderer.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/orderer.block -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/bar.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/bar.tx -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/foo.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/foo.tx -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/orderer.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/orderer.block -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/gocc/sample2/src/github.com/trade_finance/trade_finance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/gocc/sample2/src/github.com/trade_finance/trade_finance.go -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/network_configs/network-config-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/network_configs/network-config-tls.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/network_configs/network-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/network_configs/network-config.json -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/network_configs/network-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/network_configs/network-config.yaml -------------------------------------------------------------------------------- /src/test/fixture/sdkintegration/peer-base/peer-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/sdkintegration/peer-base/peer-base.yaml -------------------------------------------------------------------------------- /src/test/fixture/src/downdc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/src/downdc.sh -------------------------------------------------------------------------------- /src/test/fixture/src/rundc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/fixture/src/rundc.sh -------------------------------------------------------------------------------- /src/test/resources/bad-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/bad-ca.crt -------------------------------------------------------------------------------- /src/test/resources/ca-rsa.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/ca-rsa.crt -------------------------------------------------------------------------------- /src/test/resources/ca-rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/ca-rsa.key -------------------------------------------------------------------------------- /src/test/resources/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/ca.crt -------------------------------------------------------------------------------- /src/test/resources/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/ca.key -------------------------------------------------------------------------------- /src/test/resources/commons-logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/commons-logging.properties -------------------------------------------------------------------------------- /src/test/resources/create_EC_key_cert_for_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/create_EC_key_cert_for_testing.md -------------------------------------------------------------------------------- /src/test/resources/keypair-signed-rsa.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/keypair-signed-rsa.crt -------------------------------------------------------------------------------- /src/test/resources/keypair-signed-rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/keypair-signed-rsa.key -------------------------------------------------------------------------------- /src/test/resources/keypair-signed.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/keypair-signed.crt -------------------------------------------------------------------------------- /src/test/resources/keypair-signed.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/keypair-signed.key -------------------------------------------------------------------------------- /src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /src/test/resources/notsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/notsigned.crt -------------------------------------------------------------------------------- /src/test/resources/notsigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAYUCS/Hyperledger-Fabric-Demo/HEAD/src/test/resources/notsigned.key -------------------------------------------------------------------------------- /src/test/resources/policyBitsAdmin: -------------------------------------------------------------------------------- 1 |   2 | DEFAULT -------------------------------------------------------------------------------- /src/test/resources/policyBitsMember: -------------------------------------------------------------------------------- 1 |   2 | DEFAULT --------------------------------------------------------------------------------