├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── agenda-2020.md ├── agenda-2021-1.md ├── agenda.md ├── contributing.md ├── did_methods ├── index.html └── readme.md ├── docs ├── Glossary.md ├── KERI-QA-introduction.pdf ├── KERI-made-easy.md ├── Q-and-A-Security.md ├── Q-and-A.md └── readme.md ├── images ├── Direct-mode-kel-kerl.png ├── KERI_image_by_CChunningham.png ├── Keri_logo_color_on_white.png ├── Key-Event.png ├── TEL-and-KEL.png ├── ais.png ├── autonomic-architecture.png ├── basic-scid.png ├── delegation-keri-muggles.png ├── delegation_flow.plantuml ├── delegation_flow.png ├── derivation-code.png ├── hash-function.jpg ├── identity_system_security_overlay.png ├── inception-rotation.png ├── inception-statement.png ├── internet_broken.png ├── keri-gdpr-compliance-muggles.png ├── key-event-log-muggles.png ├── key-infra-valence.png ├── key-rotation-muggles-steps1-2.png ├── key-rotation-muggles-steps3-4.png ├── key-rotation-muggles-steps5-6.png ├── key-rotation-muggles-steps7-8.png ├── key-rotation-muggles-steps9-10.png ├── me-and-mother-in-law.jpg ├── mother-in-law-scolding.gif ├── platform_locked_trust.png ├── prefix.png ├── pubprivkey-caveat.png ├── sai_sci.png ├── sci-muggles.png ├── sci_issue_bind.png ├── sci_ssi_book.png ├── spanning_layer.png ├── trade-space-limitations.png ├── trust-over-ip-stack.png └── waist_neck.png ├── implementation.md ├── kids ├── KERIDerivationCode │ ├── Base64BinaryDecodingFromASCII.csv │ ├── Base64BinaryEncodingToASCII.csv │ ├── Base64DecodingFromAscii.csv │ ├── Base64EncodingToASCII.csv │ ├── FourCharacterKERIBase64AttachedSignatureDerivationCode.csv │ ├── FourCharacterKERIBase64CountCodeForAttachedSignatures.csv │ ├── FourCharacterKERIBase64PrefixDerivationCode.csv │ ├── OneCharacterKERIBase64PrefixDerivationCode.csv │ ├── OneCharacterKERIBase64SelectionCode.csv │ ├── TwoCharacterKERIBase64AttachedSignatureDerivationCode.csv │ ├── TwoCharacterKERIBase64AttachedSignatureSelectionCode.csv │ └── TwoCharacterKERIBase64PrefixDerivationCode.csv ├── KERI_WP.pdf ├── kid0000.md ├── kid0000Comment.md ├── kid0001.md ├── kid0001Comment.md ├── kid0002.md ├── kid0002Comment.md ├── kid0003.md ├── kid0003Comment.md ├── kid0003_compact_labels.md ├── kid0004.md ├── kid0004Comment.md ├── kid0005.md ├── kid0005Comment.md ├── kid0006.md ├── kid0006Comment.md ├── kid0007.md ├── kid0007Comment.md ├── kid0008.md ├── kid0008Comment.md ├── kid0009.md ├── kid0009Comment.md ├── kid0010.md └── readme.md ├── tags └── readme.md ├── test_vectors ├── basic_1.json ├── self_addressing_1.json └── self_addressing_2.json ├── testing └── readme.md └── usecase_notes.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/_config.yml -------------------------------------------------------------------------------- /agenda-2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/agenda-2020.md -------------------------------------------------------------------------------- /agenda-2021-1.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/agenda.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/contributing.md -------------------------------------------------------------------------------- /did_methods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/did_methods/index.html -------------------------------------------------------------------------------- /did_methods/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/did_methods/readme.md -------------------------------------------------------------------------------- /docs/Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/Glossary.md -------------------------------------------------------------------------------- /docs/KERI-QA-introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/KERI-QA-introduction.pdf -------------------------------------------------------------------------------- /docs/KERI-made-easy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/KERI-made-easy.md -------------------------------------------------------------------------------- /docs/Q-and-A-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/Q-and-A-Security.md -------------------------------------------------------------------------------- /docs/Q-and-A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/Q-and-A.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/docs/readme.md -------------------------------------------------------------------------------- /images/Direct-mode-kel-kerl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/Direct-mode-kel-kerl.png -------------------------------------------------------------------------------- /images/KERI_image_by_CChunningham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/KERI_image_by_CChunningham.png -------------------------------------------------------------------------------- /images/Keri_logo_color_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/Keri_logo_color_on_white.png -------------------------------------------------------------------------------- /images/Key-Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/Key-Event.png -------------------------------------------------------------------------------- /images/TEL-and-KEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/TEL-and-KEL.png -------------------------------------------------------------------------------- /images/ais.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/ais.png -------------------------------------------------------------------------------- /images/autonomic-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/autonomic-architecture.png -------------------------------------------------------------------------------- /images/basic-scid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/basic-scid.png -------------------------------------------------------------------------------- /images/delegation-keri-muggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/delegation-keri-muggles.png -------------------------------------------------------------------------------- /images/delegation_flow.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/delegation_flow.plantuml -------------------------------------------------------------------------------- /images/delegation_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/delegation_flow.png -------------------------------------------------------------------------------- /images/derivation-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/derivation-code.png -------------------------------------------------------------------------------- /images/hash-function.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/hash-function.jpg -------------------------------------------------------------------------------- /images/identity_system_security_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/identity_system_security_overlay.png -------------------------------------------------------------------------------- /images/inception-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/inception-rotation.png -------------------------------------------------------------------------------- /images/inception-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/inception-statement.png -------------------------------------------------------------------------------- /images/internet_broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/internet_broken.png -------------------------------------------------------------------------------- /images/keri-gdpr-compliance-muggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/keri-gdpr-compliance-muggles.png -------------------------------------------------------------------------------- /images/key-event-log-muggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-event-log-muggles.png -------------------------------------------------------------------------------- /images/key-infra-valence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-infra-valence.png -------------------------------------------------------------------------------- /images/key-rotation-muggles-steps1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-rotation-muggles-steps1-2.png -------------------------------------------------------------------------------- /images/key-rotation-muggles-steps3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-rotation-muggles-steps3-4.png -------------------------------------------------------------------------------- /images/key-rotation-muggles-steps5-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-rotation-muggles-steps5-6.png -------------------------------------------------------------------------------- /images/key-rotation-muggles-steps7-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-rotation-muggles-steps7-8.png -------------------------------------------------------------------------------- /images/key-rotation-muggles-steps9-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/key-rotation-muggles-steps9-10.png -------------------------------------------------------------------------------- /images/me-and-mother-in-law.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/me-and-mother-in-law.jpg -------------------------------------------------------------------------------- /images/mother-in-law-scolding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/mother-in-law-scolding.gif -------------------------------------------------------------------------------- /images/platform_locked_trust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/platform_locked_trust.png -------------------------------------------------------------------------------- /images/prefix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/prefix.png -------------------------------------------------------------------------------- /images/pubprivkey-caveat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/pubprivkey-caveat.png -------------------------------------------------------------------------------- /images/sai_sci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/sai_sci.png -------------------------------------------------------------------------------- /images/sci-muggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/sci-muggles.png -------------------------------------------------------------------------------- /images/sci_issue_bind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/sci_issue_bind.png -------------------------------------------------------------------------------- /images/sci_ssi_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/sci_ssi_book.png -------------------------------------------------------------------------------- /images/spanning_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/spanning_layer.png -------------------------------------------------------------------------------- /images/trade-space-limitations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/trade-space-limitations.png -------------------------------------------------------------------------------- /images/trust-over-ip-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/trust-over-ip-stack.png -------------------------------------------------------------------------------- /images/waist_neck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/images/waist_neck.png -------------------------------------------------------------------------------- /implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/implementation.md -------------------------------------------------------------------------------- /kids/KERIDerivationCode/Base64BinaryDecodingFromASCII.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/Base64BinaryDecodingFromASCII.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/Base64BinaryEncodingToASCII.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/Base64BinaryEncodingToASCII.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/Base64DecodingFromAscii.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/Base64DecodingFromAscii.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/Base64EncodingToASCII.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/Base64EncodingToASCII.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/FourCharacterKERIBase64AttachedSignatureDerivationCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/FourCharacterKERIBase64AttachedSignatureDerivationCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/FourCharacterKERIBase64CountCodeForAttachedSignatures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/FourCharacterKERIBase64CountCodeForAttachedSignatures.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/FourCharacterKERIBase64PrefixDerivationCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/FourCharacterKERIBase64PrefixDerivationCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/OneCharacterKERIBase64PrefixDerivationCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/OneCharacterKERIBase64PrefixDerivationCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/OneCharacterKERIBase64SelectionCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/OneCharacterKERIBase64SelectionCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/TwoCharacterKERIBase64AttachedSignatureDerivationCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/TwoCharacterKERIBase64AttachedSignatureDerivationCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/TwoCharacterKERIBase64AttachedSignatureSelectionCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/TwoCharacterKERIBase64AttachedSignatureSelectionCode.csv -------------------------------------------------------------------------------- /kids/KERIDerivationCode/TwoCharacterKERIBase64PrefixDerivationCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERIDerivationCode/TwoCharacterKERIBase64PrefixDerivationCode.csv -------------------------------------------------------------------------------- /kids/KERI_WP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/KERI_WP.pdf -------------------------------------------------------------------------------- /kids/kid0000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0000.md -------------------------------------------------------------------------------- /kids/kid0000Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0000Comment.md -------------------------------------------------------------------------------- /kids/kid0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0001.md -------------------------------------------------------------------------------- /kids/kid0001Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0001Comment.md -------------------------------------------------------------------------------- /kids/kid0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0002.md -------------------------------------------------------------------------------- /kids/kid0002Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0002Comment.md -------------------------------------------------------------------------------- /kids/kid0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0003.md -------------------------------------------------------------------------------- /kids/kid0003Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0003Comment.md -------------------------------------------------------------------------------- /kids/kid0003_compact_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0003_compact_labels.md -------------------------------------------------------------------------------- /kids/kid0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0004.md -------------------------------------------------------------------------------- /kids/kid0004Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0004Comment.md -------------------------------------------------------------------------------- /kids/kid0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0005.md -------------------------------------------------------------------------------- /kids/kid0005Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0005Comment.md -------------------------------------------------------------------------------- /kids/kid0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0006.md -------------------------------------------------------------------------------- /kids/kid0006Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0006Comment.md -------------------------------------------------------------------------------- /kids/kid0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0007.md -------------------------------------------------------------------------------- /kids/kid0007Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0007Comment.md -------------------------------------------------------------------------------- /kids/kid0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0008.md -------------------------------------------------------------------------------- /kids/kid0008Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0008Comment.md -------------------------------------------------------------------------------- /kids/kid0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0009.md -------------------------------------------------------------------------------- /kids/kid0009Comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0009Comment.md -------------------------------------------------------------------------------- /kids/kid0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/kid0010.md -------------------------------------------------------------------------------- /kids/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/kids/readme.md -------------------------------------------------------------------------------- /tags/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_vectors/basic_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/test_vectors/basic_1.json -------------------------------------------------------------------------------- /test_vectors/self_addressing_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/test_vectors/self_addressing_1.json -------------------------------------------------------------------------------- /test_vectors/self_addressing_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/test_vectors/self_addressing_2.json -------------------------------------------------------------------------------- /testing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/testing/readme.md -------------------------------------------------------------------------------- /usecase_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/keri/HEAD/usecase_notes.md --------------------------------------------------------------------------------