├── .gitignore ├── .readthedocs.yml ├── CONTENT_LICENSE ├── CONTRIBUTING.md ├── FAQs.md ├── LICENSE ├── Makefile ├── README.md ├── config ├── __init__.py ├── build_doc.py └── iden3_docmap.py ├── launch.py ├── make.bat ├── requirements.txt └── source ├── _static └── img │ ├── centralized_login_protocol.png │ ├── iden3-icon-small.png │ ├── iden3-icon.png │ └── iden3-icon2.png ├── conf.py ├── devel └── centralized_login.rst ├── developers.rst ├── docs ├── Baby-Jubjub.pdf ├── Ed-DSA.pdf ├── MerkleTree.pdf ├── Pedersen-Hash.pdf ├── circom_and_snarkJS.pdf ├── iden3_ethcc_presentation.pdf ├── presentations.rst └── videos.rst ├── iden3_repos ├── circom.rst ├── circom │ ├── README.rst │ └── TUTORIAL.rst ├── circomlib.rst ├── discovery-node.rst ├── discovery-node │ ├── README.rst │ └── docs │ │ ├── flow00.png │ │ └── network00.png ├── go-iden3.rst ├── go-iden3 │ ├── README.rst │ ├── Relay.rst │ ├── cmd │ │ └── backupserver │ │ │ └── README.rst │ ├── crypto │ │ └── README.rst │ └── merkletreeDoc │ │ ├── merkletree.rst │ │ └── merkletree_graphviz.png ├── iden3js.rst ├── iden3js │ ├── README.rst │ └── src │ │ └── protocols │ │ ├── login_flow.png │ │ ├── login_merge.rst │ │ └── login_overview.png ├── notifications-server.rst ├── notifications-server │ └── README.rst ├── research.rst ├── research │ ├── pedersen-hash │ │ ├── Diag │ │ │ ├── Mult_by_scalar.png │ │ │ ├── Mult_by_scalar_SEQ.png │ │ │ ├── Mult_by_scalar_SEQ_prime.png │ │ │ ├── Mult_by_scalar_SEQ_window.png │ │ │ ├── Ped_Hash.png │ │ │ ├── Ped_Hash_Multiplication.png │ │ │ └── Ped_Hash_Multiplication_selector.png │ │ └── iden3.png │ └── publications │ │ └── zkproof-standards-workshop-2 │ │ ├── baby-jubjub │ │ ├── Baby-Jubjub.pdf │ │ ├── baby-jubjub.rst │ │ └── figures │ │ │ ├── multiplication-SEQ-prime.png │ │ │ ├── multiplication-SEQ-window.png │ │ │ ├── multiplication-SEQ.png │ │ │ └── multiplication.png │ │ ├── ed-dsa │ │ ├── Ed-DSA.pdf │ │ ├── circuit-eddsa.png │ │ ├── ed-dsa.rst │ │ └── figures │ │ │ ├── multiplication-SEQ-prime.png │ │ │ ├── multiplication-SEQ-window.png │ │ │ ├── multiplication-SEQ.png │ │ │ └── multiplication.png │ │ ├── merkle-tree │ │ ├── MerkleTree.pdf │ │ ├── images │ │ │ ├── MT-pfs-h.png │ │ │ ├── MT-pfs.png │ │ │ ├── ex-MT-5.png │ │ │ └── ex-MT-6.png │ │ └── merkle-tree.rst │ │ └── pedersen-hash │ │ ├── Pedersen-Hash.pdf │ │ ├── figures │ │ ├── pedersen-hash.png │ │ ├── pedersen-multiplication-selector.png │ │ └── pedersen-multiplication.png │ │ ├── iden3.png │ │ └── pedersen.rst ├── snarkjs.rst ├── snarkjs │ └── README.rst ├── tx-forwarder.rst ├── tx-forwarder │ └── README.rst ├── wasmbuilder.rst ├── websnark.rst └── websnark │ └── README.rst ├── index.rst ├── publications.rst ├── repositories.rst ├── technology.rst └── technology ├── claim_server.rst ├── claims.rst ├── identity.rst ├── ims_overview.rst ├── merkle_tree.rst ├── name_server.rst ├── notification_server.rst ├── relayer.rst ├── wallet.rst └── zeroknowledge.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CONTENT_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/CONTENT_LICENSE -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/FAQs.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['build_doc'] 2 | -------------------------------------------------------------------------------- /config/build_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/config/build_doc.py -------------------------------------------------------------------------------- /config/iden3_docmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/config/iden3_docmap.py -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/launch.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/_static/img/centralized_login_protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/_static/img/centralized_login_protocol.png -------------------------------------------------------------------------------- /source/_static/img/iden3-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/_static/img/iden3-icon-small.png -------------------------------------------------------------------------------- /source/_static/img/iden3-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/_static/img/iden3-icon.png -------------------------------------------------------------------------------- /source/_static/img/iden3-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/_static/img/iden3-icon2.png -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/devel/centralized_login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/devel/centralized_login.rst -------------------------------------------------------------------------------- /source/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/developers.rst -------------------------------------------------------------------------------- /source/docs/Baby-Jubjub.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/Baby-Jubjub.pdf -------------------------------------------------------------------------------- /source/docs/Ed-DSA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/Ed-DSA.pdf -------------------------------------------------------------------------------- /source/docs/MerkleTree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/MerkleTree.pdf -------------------------------------------------------------------------------- /source/docs/Pedersen-Hash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/Pedersen-Hash.pdf -------------------------------------------------------------------------------- /source/docs/circom_and_snarkJS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/circom_and_snarkJS.pdf -------------------------------------------------------------------------------- /source/docs/iden3_ethcc_presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/iden3_ethcc_presentation.pdf -------------------------------------------------------------------------------- /source/docs/presentations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/presentations.rst -------------------------------------------------------------------------------- /source/docs/videos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/docs/videos.rst -------------------------------------------------------------------------------- /source/iden3_repos/circom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/circom.rst -------------------------------------------------------------------------------- /source/iden3_repos/circom/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/circom/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/circom/TUTORIAL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/circom/TUTORIAL.rst -------------------------------------------------------------------------------- /source/iden3_repos/circomlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/circomlib.rst -------------------------------------------------------------------------------- /source/iden3_repos/discovery-node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/discovery-node.rst -------------------------------------------------------------------------------- /source/iden3_repos/discovery-node/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/discovery-node/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/discovery-node/docs/flow00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/discovery-node/docs/flow00.png -------------------------------------------------------------------------------- /source/iden3_repos/discovery-node/docs/network00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/discovery-node/docs/network00.png -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/Relay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/Relay.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/cmd/backupserver/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/cmd/backupserver/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/crypto/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/crypto/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/merkletreeDoc/merkletree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/merkletreeDoc/merkletree.rst -------------------------------------------------------------------------------- /source/iden3_repos/go-iden3/merkletreeDoc/merkletree_graphviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/go-iden3/merkletreeDoc/merkletree_graphviz.png -------------------------------------------------------------------------------- /source/iden3_repos/iden3js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/iden3js.rst -------------------------------------------------------------------------------- /source/iden3_repos/iden3js/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/iden3js/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/iden3js/src/protocols/login_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/iden3js/src/protocols/login_flow.png -------------------------------------------------------------------------------- /source/iden3_repos/iden3js/src/protocols/login_merge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/iden3js/src/protocols/login_merge.rst -------------------------------------------------------------------------------- /source/iden3_repos/iden3js/src/protocols/login_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/iden3js/src/protocols/login_overview.png -------------------------------------------------------------------------------- /source/iden3_repos/notifications-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/notifications-server.rst -------------------------------------------------------------------------------- /source/iden3_repos/notifications-server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/notifications-server/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/research.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research.rst -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ_prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ_prime.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Mult_by_scalar_SEQ_window.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash_Multiplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash_Multiplication.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash_Multiplication_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/Diag/Ped_Hash_Multiplication_selector.png -------------------------------------------------------------------------------- /source/iden3_repos/research/pedersen-hash/iden3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/pedersen-hash/iden3.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/Baby-Jubjub.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/Baby-Jubjub.pdf -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/baby-jubjub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/baby-jubjub.rst -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ-prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ-prime.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ-window.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication-SEQ.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/baby-jubjub/figures/multiplication.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/Ed-DSA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/Ed-DSA.pdf -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/circuit-eddsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/circuit-eddsa.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/ed-dsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/ed-dsa.rst -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ-prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ-prime.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ-window.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication-SEQ.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/ed-dsa/figures/multiplication.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/MerkleTree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/MerkleTree.pdf -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/MT-pfs-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/MT-pfs-h.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/MT-pfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/MT-pfs.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/ex-MT-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/ex-MT-5.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/ex-MT-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/images/ex-MT-6.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/merkle-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/merkle-tree/merkle-tree.rst -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/Pedersen-Hash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/Pedersen-Hash.pdf -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-hash.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-multiplication-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-multiplication-selector.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-multiplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/figures/pedersen-multiplication.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/iden3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/iden3.png -------------------------------------------------------------------------------- /source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/pedersen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/research/publications/zkproof-standards-workshop-2/pedersen-hash/pedersen.rst -------------------------------------------------------------------------------- /source/iden3_repos/snarkjs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/snarkjs.rst -------------------------------------------------------------------------------- /source/iden3_repos/snarkjs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/snarkjs/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/tx-forwarder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/tx-forwarder.rst -------------------------------------------------------------------------------- /source/iden3_repos/tx-forwarder/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/tx-forwarder/README.rst -------------------------------------------------------------------------------- /source/iden3_repos/wasmbuilder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/wasmbuilder.rst -------------------------------------------------------------------------------- /source/iden3_repos/websnark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/websnark.rst -------------------------------------------------------------------------------- /source/iden3_repos/websnark/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/iden3_repos/websnark/README.rst -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/publications.rst -------------------------------------------------------------------------------- /source/repositories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/repositories.rst -------------------------------------------------------------------------------- /source/technology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology.rst -------------------------------------------------------------------------------- /source/technology/claim_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/claim_server.rst -------------------------------------------------------------------------------- /source/technology/claims.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/claims.rst -------------------------------------------------------------------------------- /source/technology/identity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/identity.rst -------------------------------------------------------------------------------- /source/technology/ims_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/ims_overview.rst -------------------------------------------------------------------------------- /source/technology/merkle_tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/merkle_tree.rst -------------------------------------------------------------------------------- /source/technology/name_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/name_server.rst -------------------------------------------------------------------------------- /source/technology/notification_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/notification_server.rst -------------------------------------------------------------------------------- /source/technology/relayer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/relayer.rst -------------------------------------------------------------------------------- /source/technology/wallet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/wallet.rst -------------------------------------------------------------------------------- /source/technology/zeroknowledge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iden3/iden3-docs/HEAD/source/technology/zeroknowledge.rst --------------------------------------------------------------------------------