├── .gitmodules ├── CNAME ├── LICENSE.md ├── README.md ├── _config.yml ├── businesses └── README.md ├── data-rights-protocol.md ├── docs ├── CNAME ├── bootstrap.min.css ├── businesses.html ├── index.html ├── logos.jpg └── sticky-footer.css ├── files ├── 2022-June-14 Draft DRP Security Model.pdf ├── 2022-Oct-26 Security Model Feedback Collection.pdf ├── DRP @ DEFCON30 - Crypto Privacy Village.pdf ├── DRP_security_model.pdf ├── README.md ├── drp-08-errata.md ├── drp-1.0-sequence-diagram.plantuml ├── drp-1.0-sequence-diagram.svg ├── eKYC-WG-feedback.pdf ├── v.0.5_Protocol_Conformance_Testing.pdf └── v.0.5_Protocol_Interoperability_Testing.pdf ├── implementation-guides.md └── openapi.yaml /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/.gitmodules -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | datarightsprotocol.org -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | data-rights-protocol.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/_config.yml -------------------------------------------------------------------------------- /businesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/businesses/README.md -------------------------------------------------------------------------------- /data-rights-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/data-rights-protocol.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | datarightsprotocol.org -------------------------------------------------------------------------------- /docs/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/docs/bootstrap.min.css -------------------------------------------------------------------------------- /docs/businesses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/docs/businesses.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/docs/logos.jpg -------------------------------------------------------------------------------- /docs/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/docs/sticky-footer.css -------------------------------------------------------------------------------- /files/2022-June-14 Draft DRP Security Model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/2022-June-14 Draft DRP Security Model.pdf -------------------------------------------------------------------------------- /files/2022-Oct-26 Security Model Feedback Collection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/2022-Oct-26 Security Model Feedback Collection.pdf -------------------------------------------------------------------------------- /files/DRP @ DEFCON30 - Crypto Privacy Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/DRP @ DEFCON30 - Crypto Privacy Village.pdf -------------------------------------------------------------------------------- /files/DRP_security_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/DRP_security_model.pdf -------------------------------------------------------------------------------- /files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/README.md -------------------------------------------------------------------------------- /files/drp-08-errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/drp-08-errata.md -------------------------------------------------------------------------------- /files/drp-1.0-sequence-diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/drp-1.0-sequence-diagram.plantuml -------------------------------------------------------------------------------- /files/drp-1.0-sequence-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/drp-1.0-sequence-diagram.svg -------------------------------------------------------------------------------- /files/eKYC-WG-feedback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/eKYC-WG-feedback.pdf -------------------------------------------------------------------------------- /files/v.0.5_Protocol_Conformance_Testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/v.0.5_Protocol_Conformance_Testing.pdf -------------------------------------------------------------------------------- /files/v.0.5_Protocol_Interoperability_Testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/files/v.0.5_Protocol_Interoperability_Testing.pdf -------------------------------------------------------------------------------- /implementation-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/implementation-guides.md -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarightsprotocol/data-rights-protocol/HEAD/openapi.yaml --------------------------------------------------------------------------------