├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── COMMIT_STYLEGUIDE.md ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md └── settings.yml ├── LICENSE ├── README.md ├── attributebased ├── .gitignore ├── javascript │ ├── .gitignore │ ├── enrollAdmin.js │ ├── index.html │ ├── index.js │ ├── invoke.js │ ├── package-lock.json │ ├── package.json │ ├── query.js │ ├── registerUser.js │ └── yarn.lock └── startFabric.sh ├── basic-network ├── .env ├── README.md ├── config │ ├── channel.tx │ └── genesis.block ├── configtx.yaml ├── connection.json ├── connection.yaml ├── crypto-config.yaml ├── crypto-config │ ├── ordererOrganizations │ │ └── example.com │ │ │ ├── ca │ │ │ ├── a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_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 │ │ │ │ │ └── 4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── users │ │ │ └── Admin@example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ └── peerOrganizations │ │ └── org1.example.com │ │ ├── ca │ │ ├── 4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk │ │ ├── ca.org1.example.com-cert.pem │ │ └── org1.example.com-cert.pem │ │ ├── msp │ │ ├── admincerts │ │ │ └── Admin@org1.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org1.example.com-cert.pem │ │ ├── peers │ │ └── peer0.org1.example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk │ │ │ ├── signcerts │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_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 │ │ │ │ └── cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ └── User1@org1.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── User1@org1.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.example.com-cert.pem │ │ ├── keystore │ │ │ └── c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk │ │ ├── signcerts │ │ │ └── User1@org1.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org1.example.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── server.crt │ │ └── server.key ├── docker-compose.yml ├── generate.sh ├── init.sh ├── start.sh ├── stop.sh └── teardown.sh ├── chaincode ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── data │ ├── policy.json │ ├── resource.json │ └── subject.json ├── index.js ├── ledger-api │ ├── state.js │ └── statelist.js ├── lib │ ├── Policy.js │ ├── PolicyList.js │ ├── Resource.js │ ├── ResourceList.js │ ├── Subject.js │ ├── SubjectList.js │ └── attributebased.js └── package.json ├── images └── architecture3.png ├── scripts └── bootstrap.sh ├── startFabric.sh ├── test ├── benchmark │ ├── addpolicy.js │ ├── addresource.js │ ├── addsubject.js │ ├── config-composite-rate.yaml │ ├── config-feedback-rate.yaml │ ├── config-iroha.yaml │ ├── config-linear-rate.yaml │ ├── config-old.yaml │ ├── config-record-replay-rate.yaml │ ├── config-sawtooth-feedback.yaml │ ├── config-sawtooth.yaml │ ├── config-zookeeper.yaml │ ├── config.yaml │ ├── config_linear.yaml │ ├── config_long.yaml │ ├── init.js │ ├── pdp.js │ └── query.js ├── reports │ ├── report-20190829T232319.html │ ├── report-20190829T232820.html │ ├── report-20190829T233204.html │ ├── report-20190829T233523.html │ ├── report-20190829T233924.html │ ├── report-20190829T234116.html │ ├── report-20190829T234652.html │ ├── report-20190830T021422.html │ ├── report-20190830T022030.html │ ├── report-20190830T022510.html │ ├── report-20190830T022747.html │ ├── report-20190903T042108.html │ ├── report-20190903T042650.html │ ├── report-20190903T043128.html │ ├── report-20190903T044032.html │ ├── report-20190903T045209.html │ ├── report-20190903T045614.html │ ├── report-20190903T050032.html │ ├── report-20190903T051004.html │ ├── report-20190903T052113.html │ ├── report-20190903T052653.html │ ├── report-20190903T052900.html │ ├── report-20190906T205152.html │ ├── report-20190906T205650.html │ ├── report-20190906T210005.html │ ├── report-20190906T210422.html │ ├── report-20190906T210633.html │ ├── report-20190906T215205.html │ ├── report-20190907T003650.html │ ├── report-20190907T005855.html │ ├── report-20190909T042500.html │ ├── report-20190913T191813.html │ ├── report-20190915T210201.html │ ├── report-20190915T214331.html │ ├── report-20190915T220840.html │ ├── report-20190915T221824.html │ ├── report-20190915T222515.html │ ├── report-20190915T223311.html │ ├── report-20190915T224216.html │ ├── report-20190915T225210.html │ ├── report-20190915T230148.html │ ├── report-20190915T231033.html │ ├── report-20190915T231741.html │ ├── report-20190915T232423.html │ ├── report-20190915T233351.html │ ├── report-20190916T175121.html │ ├── report-20190916T175927.html │ ├── report-20190916T180543.html │ ├── report-20190916T182029.html │ ├── report-20190916T183749.html │ ├── report-20190916T184453.html │ ├── report-20190916T184918.html │ ├── report-20190916T185434.html │ ├── report-20190916T185934.html │ ├── report-20190916T194329.html │ ├── report-20190916T204200.html │ ├── report-20190916T205522.html │ ├── report-20190916T214604.html │ ├── report-20190916T215324.html │ ├── report-20190916T215901.html │ ├── report-20190916T220453.html │ ├── report-20190916T221800.html │ ├── report-20190916T223950.html │ ├── report-20190916T232327.html │ ├── report-20190916T233037.html │ ├── report-20190917T031418.html │ ├── report-20190917T032003.html │ ├── report-20190917T032437.html │ ├── report-20190917T033026.html │ ├── report-20190917T033455.html │ ├── report-20190917T034235.html │ ├── report-20190917T034925.html │ ├── report-20190917T035657.html │ ├── report-20190917T040340.html │ ├── report-20190917T041224.html │ ├── report-20190917T041840.html │ ├── report-20190917T042954.html │ ├── report-20190917T043635.html │ ├── report-20190917T044353.html │ ├── report-20190917T045052.html │ ├── report-20190917T191813.html │ ├── report-20190917T205031.html │ ├── report-20190918T165330.html │ ├── report-20190918T170245.html │ ├── report-20190918T171211.html │ ├── report-20190918T172022.html │ ├── report-20190918T172945.html │ ├── report-20190918T173838.html │ ├── report-20190918T175717.html │ ├── report-20190918T180111.html │ ├── report-20190918T180510.html │ └── report-20190918T181152.html └── src │ └── contract │ └── fabric │ └── attributeBased │ └── node │ ├── attributebased.js │ └── package.json └── travis.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | 5 | coverage 6 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/COMMIT_STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.github/COMMIT_STYLEGUIDE.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/README.md -------------------------------------------------------------------------------- /attributebased/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /package-lock.json 3 | /hfc-key-store/ 4 | -------------------------------------------------------------------------------- /attributebased/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/.gitignore -------------------------------------------------------------------------------- /attributebased/javascript/enrollAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/enrollAdmin.js -------------------------------------------------------------------------------- /attributebased/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/index.html -------------------------------------------------------------------------------- /attributebased/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/index.js -------------------------------------------------------------------------------- /attributebased/javascript/invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/invoke.js -------------------------------------------------------------------------------- /attributebased/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/package-lock.json -------------------------------------------------------------------------------- /attributebased/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/package.json -------------------------------------------------------------------------------- /attributebased/javascript/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/query.js -------------------------------------------------------------------------------- /attributebased/javascript/registerUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/registerUser.js -------------------------------------------------------------------------------- /attributebased/javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/javascript/yarn.lock -------------------------------------------------------------------------------- /attributebased/startFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/attributebased/startFabric.sh -------------------------------------------------------------------------------- /basic-network/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=net 2 | -------------------------------------------------------------------------------- /basic-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/README.md -------------------------------------------------------------------------------- /basic-network/config/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/config/channel.tx -------------------------------------------------------------------------------- /basic-network/config/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/config/genesis.block -------------------------------------------------------------------------------- /basic-network/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/configtx.yaml -------------------------------------------------------------------------------- /basic-network/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/connection.json -------------------------------------------------------------------------------- /basic-network/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/connection.yaml -------------------------------------------------------------------------------- /basic-network/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config.yaml -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /basic-network/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/docker-compose.yml -------------------------------------------------------------------------------- /basic-network/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/generate.sh -------------------------------------------------------------------------------- /basic-network/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/init.sh -------------------------------------------------------------------------------- /basic-network/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/start.sh -------------------------------------------------------------------------------- /basic-network/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/stop.sh -------------------------------------------------------------------------------- /basic-network/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/basic-network/teardown.sh -------------------------------------------------------------------------------- /chaincode/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/.editorconfig -------------------------------------------------------------------------------- /chaincode/.eslintignore: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | 5 | coverage 6 | -------------------------------------------------------------------------------- /chaincode/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/.eslintrc.js -------------------------------------------------------------------------------- /chaincode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/.gitignore -------------------------------------------------------------------------------- /chaincode/data/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/data/policy.json -------------------------------------------------------------------------------- /chaincode/data/resource.json: -------------------------------------------------------------------------------- 1 | {"group":{"id":12}} 2 | -------------------------------------------------------------------------------- /chaincode/data/subject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/data/subject.json -------------------------------------------------------------------------------- /chaincode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/index.js -------------------------------------------------------------------------------- /chaincode/ledger-api/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/ledger-api/state.js -------------------------------------------------------------------------------- /chaincode/ledger-api/statelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/ledger-api/statelist.js -------------------------------------------------------------------------------- /chaincode/lib/Policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/Policy.js -------------------------------------------------------------------------------- /chaincode/lib/PolicyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/PolicyList.js -------------------------------------------------------------------------------- /chaincode/lib/Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/Resource.js -------------------------------------------------------------------------------- /chaincode/lib/ResourceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/ResourceList.js -------------------------------------------------------------------------------- /chaincode/lib/Subject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/Subject.js -------------------------------------------------------------------------------- /chaincode/lib/SubjectList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/SubjectList.js -------------------------------------------------------------------------------- /chaincode/lib/attributebased.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/lib/attributebased.js -------------------------------------------------------------------------------- /chaincode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/chaincode/package.json -------------------------------------------------------------------------------- /images/architecture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/images/architecture3.png -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/scripts/bootstrap.sh -------------------------------------------------------------------------------- /startFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/startFabric.sh -------------------------------------------------------------------------------- /test/benchmark/addpolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/addpolicy.js -------------------------------------------------------------------------------- /test/benchmark/addresource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/addresource.js -------------------------------------------------------------------------------- /test/benchmark/addsubject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/addsubject.js -------------------------------------------------------------------------------- /test/benchmark/config-composite-rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-composite-rate.yaml -------------------------------------------------------------------------------- /test/benchmark/config-feedback-rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-feedback-rate.yaml -------------------------------------------------------------------------------- /test/benchmark/config-iroha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-iroha.yaml -------------------------------------------------------------------------------- /test/benchmark/config-linear-rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-linear-rate.yaml -------------------------------------------------------------------------------- /test/benchmark/config-old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-old.yaml -------------------------------------------------------------------------------- /test/benchmark/config-record-replay-rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-record-replay-rate.yaml -------------------------------------------------------------------------------- /test/benchmark/config-sawtooth-feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-sawtooth-feedback.yaml -------------------------------------------------------------------------------- /test/benchmark/config-sawtooth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-sawtooth.yaml -------------------------------------------------------------------------------- /test/benchmark/config-zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config-zookeeper.yaml -------------------------------------------------------------------------------- /test/benchmark/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config.yaml -------------------------------------------------------------------------------- /test/benchmark/config_linear.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config_linear.yaml -------------------------------------------------------------------------------- /test/benchmark/config_long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/config_long.yaml -------------------------------------------------------------------------------- /test/benchmark/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/init.js -------------------------------------------------------------------------------- /test/benchmark/pdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/pdp.js -------------------------------------------------------------------------------- /test/benchmark/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/benchmark/query.js -------------------------------------------------------------------------------- /test/reports/report-20190829T232319.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T232319.html -------------------------------------------------------------------------------- /test/reports/report-20190829T232820.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T232820.html -------------------------------------------------------------------------------- /test/reports/report-20190829T233204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T233204.html -------------------------------------------------------------------------------- /test/reports/report-20190829T233523.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T233523.html -------------------------------------------------------------------------------- /test/reports/report-20190829T233924.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T233924.html -------------------------------------------------------------------------------- /test/reports/report-20190829T234116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T234116.html -------------------------------------------------------------------------------- /test/reports/report-20190829T234652.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190829T234652.html -------------------------------------------------------------------------------- /test/reports/report-20190830T021422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190830T021422.html -------------------------------------------------------------------------------- /test/reports/report-20190830T022030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190830T022030.html -------------------------------------------------------------------------------- /test/reports/report-20190830T022510.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190830T022510.html -------------------------------------------------------------------------------- /test/reports/report-20190830T022747.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190830T022747.html -------------------------------------------------------------------------------- /test/reports/report-20190903T042108.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T042108.html -------------------------------------------------------------------------------- /test/reports/report-20190903T042650.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T042650.html -------------------------------------------------------------------------------- /test/reports/report-20190903T043128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T043128.html -------------------------------------------------------------------------------- /test/reports/report-20190903T044032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T044032.html -------------------------------------------------------------------------------- /test/reports/report-20190903T045209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T045209.html -------------------------------------------------------------------------------- /test/reports/report-20190903T045614.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T045614.html -------------------------------------------------------------------------------- /test/reports/report-20190903T050032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T050032.html -------------------------------------------------------------------------------- /test/reports/report-20190903T051004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T051004.html -------------------------------------------------------------------------------- /test/reports/report-20190903T052113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T052113.html -------------------------------------------------------------------------------- /test/reports/report-20190903T052653.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T052653.html -------------------------------------------------------------------------------- /test/reports/report-20190903T052900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190903T052900.html -------------------------------------------------------------------------------- /test/reports/report-20190906T205152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T205152.html -------------------------------------------------------------------------------- /test/reports/report-20190906T205650.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T205650.html -------------------------------------------------------------------------------- /test/reports/report-20190906T210005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T210005.html -------------------------------------------------------------------------------- /test/reports/report-20190906T210422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T210422.html -------------------------------------------------------------------------------- /test/reports/report-20190906T210633.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T210633.html -------------------------------------------------------------------------------- /test/reports/report-20190906T215205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190906T215205.html -------------------------------------------------------------------------------- /test/reports/report-20190907T003650.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190907T003650.html -------------------------------------------------------------------------------- /test/reports/report-20190907T005855.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190907T005855.html -------------------------------------------------------------------------------- /test/reports/report-20190909T042500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190909T042500.html -------------------------------------------------------------------------------- /test/reports/report-20190913T191813.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190913T191813.html -------------------------------------------------------------------------------- /test/reports/report-20190915T210201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T210201.html -------------------------------------------------------------------------------- /test/reports/report-20190915T214331.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T214331.html -------------------------------------------------------------------------------- /test/reports/report-20190915T220840.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T220840.html -------------------------------------------------------------------------------- /test/reports/report-20190915T221824.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T221824.html -------------------------------------------------------------------------------- /test/reports/report-20190915T222515.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T222515.html -------------------------------------------------------------------------------- /test/reports/report-20190915T223311.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T223311.html -------------------------------------------------------------------------------- /test/reports/report-20190915T224216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T224216.html -------------------------------------------------------------------------------- /test/reports/report-20190915T225210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T225210.html -------------------------------------------------------------------------------- /test/reports/report-20190915T230148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T230148.html -------------------------------------------------------------------------------- /test/reports/report-20190915T231033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T231033.html -------------------------------------------------------------------------------- /test/reports/report-20190915T231741.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T231741.html -------------------------------------------------------------------------------- /test/reports/report-20190915T232423.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T232423.html -------------------------------------------------------------------------------- /test/reports/report-20190915T233351.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190915T233351.html -------------------------------------------------------------------------------- /test/reports/report-20190916T175121.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T175121.html -------------------------------------------------------------------------------- /test/reports/report-20190916T175927.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T175927.html -------------------------------------------------------------------------------- /test/reports/report-20190916T180543.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T180543.html -------------------------------------------------------------------------------- /test/reports/report-20190916T182029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T182029.html -------------------------------------------------------------------------------- /test/reports/report-20190916T183749.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T183749.html -------------------------------------------------------------------------------- /test/reports/report-20190916T184453.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T184453.html -------------------------------------------------------------------------------- /test/reports/report-20190916T184918.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T184918.html -------------------------------------------------------------------------------- /test/reports/report-20190916T185434.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T185434.html -------------------------------------------------------------------------------- /test/reports/report-20190916T185934.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T185934.html -------------------------------------------------------------------------------- /test/reports/report-20190916T194329.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T194329.html -------------------------------------------------------------------------------- /test/reports/report-20190916T204200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T204200.html -------------------------------------------------------------------------------- /test/reports/report-20190916T205522.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T205522.html -------------------------------------------------------------------------------- /test/reports/report-20190916T214604.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T214604.html -------------------------------------------------------------------------------- /test/reports/report-20190916T215324.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T215324.html -------------------------------------------------------------------------------- /test/reports/report-20190916T215901.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T215901.html -------------------------------------------------------------------------------- /test/reports/report-20190916T220453.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T220453.html -------------------------------------------------------------------------------- /test/reports/report-20190916T221800.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T221800.html -------------------------------------------------------------------------------- /test/reports/report-20190916T223950.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T223950.html -------------------------------------------------------------------------------- /test/reports/report-20190916T232327.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/reports/report-20190916T233037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190916T233037.html -------------------------------------------------------------------------------- /test/reports/report-20190917T031418.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T031418.html -------------------------------------------------------------------------------- /test/reports/report-20190917T032003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T032003.html -------------------------------------------------------------------------------- /test/reports/report-20190917T032437.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T032437.html -------------------------------------------------------------------------------- /test/reports/report-20190917T033026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T033026.html -------------------------------------------------------------------------------- /test/reports/report-20190917T033455.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T033455.html -------------------------------------------------------------------------------- /test/reports/report-20190917T034235.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T034235.html -------------------------------------------------------------------------------- /test/reports/report-20190917T034925.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T034925.html -------------------------------------------------------------------------------- /test/reports/report-20190917T035657.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T035657.html -------------------------------------------------------------------------------- /test/reports/report-20190917T040340.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T040340.html -------------------------------------------------------------------------------- /test/reports/report-20190917T041224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T041224.html -------------------------------------------------------------------------------- /test/reports/report-20190917T041840.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T041840.html -------------------------------------------------------------------------------- /test/reports/report-20190917T042954.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T042954.html -------------------------------------------------------------------------------- /test/reports/report-20190917T043635.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T043635.html -------------------------------------------------------------------------------- /test/reports/report-20190917T044353.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T044353.html -------------------------------------------------------------------------------- /test/reports/report-20190917T045052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T045052.html -------------------------------------------------------------------------------- /test/reports/report-20190917T191813.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T191813.html -------------------------------------------------------------------------------- /test/reports/report-20190917T205031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190917T205031.html -------------------------------------------------------------------------------- /test/reports/report-20190918T165330.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T165330.html -------------------------------------------------------------------------------- /test/reports/report-20190918T170245.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T170245.html -------------------------------------------------------------------------------- /test/reports/report-20190918T171211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T171211.html -------------------------------------------------------------------------------- /test/reports/report-20190918T172022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T172022.html -------------------------------------------------------------------------------- /test/reports/report-20190918T172945.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T172945.html -------------------------------------------------------------------------------- /test/reports/report-20190918T173838.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T173838.html -------------------------------------------------------------------------------- /test/reports/report-20190918T175717.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T175717.html -------------------------------------------------------------------------------- /test/reports/report-20190918T180111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T180111.html -------------------------------------------------------------------------------- /test/reports/report-20190918T180510.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T180510.html -------------------------------------------------------------------------------- /test/reports/report-20190918T181152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/reports/report-20190918T181152.html -------------------------------------------------------------------------------- /test/src/contract/fabric/attributeBased/node/attributebased.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/src/contract/fabric/attributeBased/node/attributebased.js -------------------------------------------------------------------------------- /test/src/contract/fabric/attributeBased/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/test/src/contract/fabric/attributeBased/node/package.json -------------------------------------------------------------------------------- /travis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/hyperledger-fabric-based-access-control/HEAD/travis.yaml --------------------------------------------------------------------------------