├── .gitattributes ├── .github ├── actions │ ├── publish-android │ │ └── action.yml │ └── test-android │ │ └── action.yml ├── settings.yml └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Jenkinsfile.cd ├── Jenkinsfile.ci ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── Specs ├── libindy-objc │ ├── 0.1.1 │ │ └── libindy-objc.podspec.json │ ├── 0.1.2 │ │ └── libindy-objc.podspec.json │ ├── 0.1.3 │ │ └── libindy-objc.podspec.json │ ├── 0.2.0 │ │ └── libindy-objc.podspec.json │ ├── 1.1.1 │ │ └── libindy-objc.podspec.json │ ├── 1.10.0 │ │ └── libindy-objc.podspec.json │ ├── 1.2.0 │ │ └── libindy-objc.podspec.json │ ├── 1.3.0 │ │ └── libindy-objc.podspec.json │ ├── 1.3.1-2 │ │ └── libindy-objc.podspec.json │ ├── 1.3.1 │ │ └── libindy-objc.podspec.json │ ├── 1.4.0 │ │ └── libindy-objc.podspec.json │ ├── 1.5.0 │ │ └── libindy-objc.podspec.json │ ├── 1.6.1 │ │ └── libindy-objc.podspec.json │ ├── 1.6.8 │ │ └── libindy-objc.podspec.json │ ├── 1.7.0 │ │ └── libindy-objc.podspec.json │ ├── 1.8.2 │ │ └── libindy-objc.podspec.json │ └── 1.9.0 │ │ └── libindy-objc.podspec.json ├── libindy │ ├── 0.1.1 │ │ └── libindy.podspec.json │ ├── 0.1.2 │ │ └── libindy.podspec.json │ ├── 0.1.3 │ │ └── libindy.podspec.json │ ├── 0.1.4 │ │ └── libindy.podspec.json │ ├── 1.1.0-1 │ │ └── libindy.podspec.json │ ├── 1.1.0 │ │ └── libindy.podspec.json │ ├── 1.10.0 │ │ └── libindy.podspec.json │ ├── 1.10.1 │ │ └── libindy.podspec.json │ ├── 1.11.0 │ │ └── libindy.podspec.json │ ├── 1.11.1 │ │ └── libindy.podspec.json │ ├── 1.12.0 │ │ └── libindy.podspec.json │ ├── 1.13.0 │ │ └── libindy.podspec.json │ ├── 1.14.0 │ │ └── libindy.podspec.json │ ├── 1.14.1 │ │ └── libindy.podspec.json │ ├── 1.14.2 │ │ └── libindy.podspec.json │ ├── 1.15.0 │ │ └── libindy.podspec.json │ ├── 1.16.0 │ │ └── libindy.podspec.json │ ├── 1.2.0 │ │ └── libindy.podspec.json │ ├── 1.3.0 │ │ └── libindy.podspec.json │ ├── 1.3.1-1 │ │ └── libindy.podspec.json │ ├── 1.3.1-2 │ │ └── libindy.podspec.json │ ├── 1.3.1 │ │ └── libindy.podspec.json │ ├── 1.4.0-1 │ │ └── libindy.podspec.json │ ├── 1.4.0-2 │ │ └── libindy.podspec.json │ ├── 1.4.0 │ │ └── libindy.podspec.json │ ├── 1.5.0 │ │ └── libindy.podspec.json │ ├── 1.6.1 │ │ └── libindy.podspec.json │ ├── 1.6.2 │ │ └── libindy.podspec.json │ ├── 1.6.3 │ │ └── libindy.podspec.json │ ├── 1.6.4-739 │ │ └── libindy.podspec.json │ ├── 1.6.4 │ │ └── libindy.podspec.json │ ├── 1.6.5 │ │ └── libindy.podspec.json │ ├── 1.6.6 │ │ └── libindy.podspec.json │ ├── 1.6.7 │ │ └── libindy.podspec.json │ ├── 1.6.8 │ │ └── libindy.podspec.json │ ├── 1.7.0 │ │ └── libindy.podspec.json │ ├── 1.8.0 │ │ └── libindy.podspec.json │ ├── 1.8.1 │ │ └── libindy.podspec.json │ ├── 1.8.2 │ │ └── libindy.podspec.json │ ├── 1.8.3-1100 │ │ └── libindy.podspec.json │ ├── 1.8.3 │ │ └── libindy.podspec.json │ └── 1.9.0 │ │ └── libindy.podspec.json ├── libzmq-pw │ └── 4.2.2 │ │ └── libzmq-pw.podspec.json ├── libzmq │ └── 4.2.3 │ │ └── libzmq.podspec.json ├── milagro │ └── 3.0.0 │ │ └── milagro.podspec.json └── vcx │ ├── 0.0.1 │ └── vcx.podspec.json │ ├── 0.0.10 │ └── vcx.podspec │ ├── 0.0.11 │ └── vcx.podspec │ ├── 0.0.12 │ └── vcx.podspec │ ├── 0.0.13 │ └── vcx.podspec │ ├── 0.0.131 │ └── vcx.podspec │ ├── 0.0.132 │ └── vcx.podspec │ ├── 0.0.133 │ └── vcx.podspec │ ├── 0.0.134 │ └── vcx.podspec │ ├── 0.0.14 │ └── vcx.podspec │ ├── 0.0.15 │ └── vcx.podspec │ ├── 0.0.19 │ └── vcx.podspec │ ├── 0.0.2 │ └── vcx.podspec │ ├── 0.0.20 │ └── vcx.podspec │ ├── 0.0.21 │ └── vcx.podspec │ ├── 0.0.22 │ └── vcx.podspec │ ├── 0.0.23 │ └── vcx.podspec │ ├── 0.0.24 │ └── vcx.podspec │ ├── 0.0.25 │ └── vcx.podspec │ ├── 0.0.26 │ └── vcx.podspec │ ├── 0.0.28 │ └── vcx.podspec │ ├── 0.0.29 │ └── vcx.podspec │ ├── 0.0.30 │ └── vcx.podspec │ ├── 0.0.31 │ └── vcx.podspec │ ├── 0.0.32 │ └── vcx.podspec │ ├── 0.0.33 │ └── vcx.podspec │ ├── 0.0.34 │ └── vcx.podspec │ ├── 0.0.35 │ └── vcx.podspec │ ├── 0.0.36 │ └── vcx.podspec │ ├── 0.0.37 │ └── vcx.podspec │ ├── 0.0.38 │ └── vcx.podspec │ ├── 0.0.39 │ └── vcx.podspec │ ├── 0.0.4 │ └── vcx.podspec │ ├── 0.0.40 │ └── vcx.podspec │ ├── 0.0.41 │ └── vcx.podspec │ ├── 0.0.45 │ └── vcx.podspec │ ├── 0.0.46 │ └── vcx.podspec │ ├── 0.0.47 │ └── vcx.podspec │ ├── 0.0.48 │ └── vcx.podspec │ ├── 0.0.49 │ └── vcx.podspec │ ├── 0.0.50 │ └── vcx.podspec │ ├── 0.0.51 │ └── vcx.podspec │ ├── 0.0.52 │ └── vcx.podspec │ ├── 0.0.53 │ └── vcx.podspec │ ├── 0.0.54 │ └── vcx.podspec │ ├── 0.0.7 │ └── vcx.podspec │ ├── 0.0.8 │ └── vcx.podspec │ └── 0.0.9 │ └── vcx.podspec ├── ci ├── .gitattributes ├── acceptance │ └── ubuntu_acceptance.dockerfile ├── android-zip-and-upload.sh ├── deb-build-and-upload.sh ├── ga-ios-build.sh ├── indy-pool.dockerfile ├── ios-build.sh ├── macos-zip-and-upload.sh ├── rpm-build-and-upload.sh └── win-zip-and-upload.sh ├── cli ├── Cargo.lock ├── Cargo.toml ├── README.md ├── build.rs ├── cli.dockerfile ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── indy-cli.install │ ├── postinst │ ├── rules │ └── source │ │ └── format ├── docker_pool_transactions_genesis ├── linux-sample-config.json ├── logger.yml ├── rpm │ └── indy-cli.spec.in └── src │ ├── command_executor.rs │ ├── commands │ ├── common.rs │ ├── did.rs │ ├── ledger.rs │ ├── mod.rs │ ├── payment_address.rs │ ├── pool.rs │ └── wallet.rs │ ├── libindy │ ├── did.rs │ ├── ledger.rs │ ├── mod.rs │ ├── payment.rs │ ├── pool.rs │ └── wallet.rs │ ├── main.rs │ └── utils │ ├── environment.rs │ ├── file.rs │ ├── history.rs │ ├── logger.rs │ ├── mod.rs │ ├── table.rs │ ├── term.rs │ └── test.rs ├── conf.py ├── docs ├── Makefile ├── README.md ├── acceptance.md ├── architecture │ ├── archive │ │ ├── agent-2-agent-proposal.puml │ │ └── libindy-agent-2-agent.puml │ ├── index.rst │ ├── indy-sdk-components.puml │ ├── indy-sdk-components.svg │ ├── indy_sdk_language_bindings.svg │ ├── language-bindings.md │ ├── libindy_components.puml │ ├── libindy_components.svg │ ├── libindy_layers.md │ ├── pool_communication_threading.puml │ ├── pool_communication_threading.svg │ ├── threading-model.md │ ├── threading-model.puml │ └── threading_model.svg ├── build-guides │ ├── android-build.md │ ├── index.rst │ ├── mac-build.md │ ├── rhel-build.md │ ├── ubuntu-build.md │ └── windows-build.md ├── concepts │ ├── default-wallet.md │ ├── index.rst │ └── revocation │ │ ├── before-and-after.png │ │ ├── cred-revocation.md │ │ └── tails.png ├── configuration.md ├── contributors │ ├── cd-pipeline.puml │ ├── cd-pipeline.svg │ ├── index.rst │ ├── release-workflow.md │ ├── signing-commits.md │ └── test-design.md ├── design │ ├── 001-cli │ │ ├── README.md │ │ ├── cli-components.puml │ │ └── cli-components.svg │ ├── 002-anoncreds │ │ ├── README.md │ │ ├── anoncreds-workflow.puml │ │ └── anoncreds-workflow.svg │ ├── 003-wallet-storage │ │ ├── README.md │ │ ├── storage-interface.puml │ │ ├── storage-interface.svg │ │ ├── wallet-components.puml │ │ ├── wallet-components.svg │ │ ├── wallet-encryption.puml │ │ └── wallet-encryption.svg │ ├── 004-payment-interface │ │ ├── README.md │ │ ├── payment-interface.puml │ │ └── payment-interface.svg │ ├── 005-dkms │ │ ├── DKMS Design and Architecture V3.md │ │ ├── README.md │ │ ├── agent-authz-policy-ledger-interactions.md │ │ ├── images │ │ │ ├── image_0.png │ │ │ ├── image_1.png │ │ │ ├── image_10.png │ │ │ ├── image_11.png │ │ │ ├── image_12.png │ │ │ ├── image_13.png │ │ │ ├── image_14.png │ │ │ ├── image_15.png │ │ │ ├── image_16.png │ │ │ ├── image_17.png │ │ │ ├── image_18.png │ │ │ ├── image_19.png │ │ │ ├── image_2.png │ │ │ ├── image_20.png │ │ │ ├── image_21.png │ │ │ ├── image_22.png │ │ │ ├── image_23.png │ │ │ ├── image_24.png │ │ │ ├── image_25.png │ │ │ ├── image_26.png │ │ │ ├── image_3.png │ │ │ ├── image_4.png │ │ │ ├── image_5.png │ │ │ ├── image_6.png │ │ │ ├── image_7.png │ │ │ ├── image_8.png │ │ │ └── image_9.png │ │ ├── pdf │ │ │ ├── Agent Authorization Policy.pdf │ │ │ ├── DKMS Requirements Report - 30 June 2017.pdf │ │ │ ├── DKMS Requirements Spreadsheet Based On NIST 800-130 - Sheet1.pdf │ │ │ └── DKMS Requirements Text Based on NIST 800-130.pdf │ │ ├── puml │ │ │ ├── 01-edge-agent-start.puml │ │ │ ├── 02-provision-new-agent.puml │ │ │ ├── 03-first-edge-agent.puml │ │ │ ├── 04-update-agent-policy-registry.puml │ │ │ ├── 05-add-cloud-agent.puml │ │ │ ├── 06-add-new-edge-agent.puml │ │ │ ├── 07-add-connection-public-did.puml │ │ │ ├── 08-add-connection-private-did-provisioned.puml │ │ │ ├── 09-add-connection-private-did-unprovisioned.puml │ │ │ ├── 10-rotate-did-key.puml │ │ │ ├── 11-revoke-did.puml │ │ │ ├── 12-revoke-edge-agent.puml │ │ │ ├── 13-recovery-setup.puml │ │ │ ├── 14-add-recovery-buddy.puml │ │ │ ├── 15-recovery-update.puml │ │ │ ├── 16-offline-recovery.puml │ │ │ ├── 17-social-recovery.puml │ │ │ ├── agency-migration.puml │ │ │ ├── burn-identity-with-agents.puml │ │ │ ├── failure-modes.puml │ │ │ ├── overview.puml │ │ │ ├── recover-agent-policy-registry.puml │ │ │ ├── recover-connection.puml │ │ │ ├── revoke-edge-agent-success.puml │ │ │ └── revoke-rogue-edge-agent.puml │ │ ├── shamir_secret.md │ │ └── trustee_protocols.md │ ├── 006-cli-plugins │ │ ├── README.md │ │ ├── cli-plugins.puml │ │ └── cli-plugins.svg │ ├── 007-cli-payments │ │ └── README.md │ ├── 008-state-proof-pluggable-parsing │ │ └── README.md │ ├── 009-efficient-connections │ │ └── README.md │ ├── 009-wallet-export-import │ │ └── README.md │ ├── 010-cli-wallet-export-import │ │ └── README.md │ ├── 011-wallet-query-language │ │ └── README.md │ ├── 012-libindy-architecture-overview │ │ ├── README.md │ │ └── sdk-overview.png │ ├── 013-caching │ │ └── README.md │ └── index.rst ├── getting-started │ ├── Trouble_shoot_GSG.md │ ├── docker-compose.yml │ ├── getting-started.dockerfile │ ├── getting-started.ipynb │ ├── getting-started.puml │ ├── getting-started.svg │ ├── index.rst │ ├── indy-walkthrough.md │ └── run-getting-started.md ├── how-tos │ ├── .gitignore │ ├── README.md │ ├── fully-qualified-did-support.md │ ├── how-to-add-a-new-API-call.md │ ├── issue-credential │ │ ├── 3-phase-negotiation.png │ │ ├── README.md │ │ ├── java │ │ │ ├── IssueCredential.java │ │ │ ├── step2.java │ │ │ ├── step3.java │ │ │ ├── step4.java │ │ │ └── template.java │ │ ├── python │ │ │ ├── issue_credential.py │ │ │ ├── step2.py │ │ │ ├── step3.py │ │ │ ├── step4.py │ │ │ ├── template.py │ │ │ └── utils.py │ │ └── rust │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── issue-credential.rs │ │ │ ├── step2.rs │ │ │ ├── step3.rs │ │ │ ├── step4.rs │ │ │ └── template.rs │ ├── negotiate-proof │ │ ├── 3-phases.png │ │ ├── README.md │ │ ├── java │ │ │ ├── NegotiateProof.java │ │ │ └── README.md │ │ ├── nodejs │ │ │ ├── colors.js │ │ │ ├── negotiateProof.js │ │ │ ├── package.json │ │ │ ├── step2.js │ │ │ ├── step3.js │ │ │ ├── step4.js │ │ │ ├── step5.js │ │ │ ├── template.js │ │ │ └── util.js │ │ ├── python │ │ │ ├── negotiate_proof.py │ │ │ ├── step2.py │ │ │ ├── step3.py │ │ │ ├── step4.py │ │ │ ├── step5.py │ │ │ ├── template.py │ │ │ └── utils.py │ │ └── rust │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── negotiate-proof.rs │ │ │ ├── step2.rs │ │ │ ├── step3.rs │ │ │ ├── step4.rs │ │ │ ├── step5.rs │ │ │ └── template.rs │ ├── not-yet-written.md │ ├── prerequisites.md │ ├── rotate-key │ │ ├── README.md │ │ ├── java │ │ │ ├── RotateKey.java │ │ │ ├── step2.java │ │ │ ├── step3.java │ │ │ ├── step4.java │ │ │ └── template.java │ │ ├── nodejs │ │ │ ├── colors.js │ │ │ ├── package.json │ │ │ ├── rotateKey.js │ │ │ ├── step2.js │ │ │ ├── step3.js │ │ │ ├── step4.js │ │ │ ├── template.js │ │ │ └── util.js │ │ ├── python │ │ │ ├── rotate_key.py │ │ │ ├── step2.py │ │ │ ├── step3.py │ │ │ ├── step4.py │ │ │ ├── template.py │ │ │ └── utils.py │ │ └── rust │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── rotate-key.rs │ │ │ ├── step2.rs │ │ │ ├── step3.rs │ │ │ ├── step4.rs │ │ │ └── template.rs │ ├── save-schema-and-cred-def │ │ ├── README.md │ │ ├── java │ │ │ ├── SaveSchemaAndCredDef.java │ │ │ ├── step2.java │ │ │ ├── step3.java │ │ │ ├── step4.java │ │ │ └── template.java │ │ ├── python │ │ │ ├── save_schema_and_cred_def.py │ │ │ ├── step2.py │ │ │ ├── step3.py │ │ │ ├── step4.py │ │ │ ├── template.py │ │ │ └── utils.py │ │ └── rust │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── save-schema-and-cred-def.rs │ │ │ ├── step2.rs │ │ │ ├── step3.rs │ │ │ ├── step4.rs │ │ │ └── template.rs │ ├── send-secure-msg │ │ ├── README.md │ │ ├── java │ │ │ └── SendSecureMessage.java │ │ ├── python │ │ │ ├── send_secure_msg.py │ │ │ ├── step3.py │ │ │ ├── step5.py │ │ │ ├── step6.py │ │ │ └── template.py │ │ └── rust │ │ │ ├── Cargo.toml │ │ │ ├── message.txt │ │ │ └── src │ │ │ ├── send-secure-msg.rs │ │ │ ├── step3.rs │ │ │ ├── step5.rs │ │ │ ├── step6.rs │ │ │ └── template.rs │ ├── transaction-author-agreement.md │ ├── trouble-shooting.md │ └── write-did-and-query-verkey │ │ ├── README.md │ │ ├── cs │ │ ├── Program.cs │ │ ├── Template.cs │ │ ├── WriteDIDAndQueryVerkey.cs │ │ └── write-did-and-query-verkey.csproj │ │ ├── java │ │ ├── WriteDIDAndQueryVerkey.java │ │ ├── step2.java │ │ ├── step3.java │ │ ├── step4.java │ │ ├── step5.java │ │ └── template.java │ │ ├── nodejs │ │ ├── colors.js │ │ ├── package.json │ │ ├── step2.js │ │ ├── step3.js │ │ ├── step4.js │ │ ├── step5.js │ │ ├── template.js │ │ ├── util.js │ │ └── writeDidAndQueryVerkey.js │ │ ├── python │ │ ├── step2.py │ │ ├── step3.py │ │ ├── step4.py │ │ ├── step5.py │ │ ├── template.py │ │ ├── utils.py │ │ └── write_did_and_query_verkey.py │ │ ├── rust │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── step2.rs │ │ │ ├── step3.rs │ │ │ ├── step4.rs │ │ │ ├── step5.rs │ │ │ ├── template.rs │ │ │ └── write-did-and-query-verkey.rs │ │ └── wallet-slide.png ├── index.rst ├── migration-guides │ ├── index.rst │ ├── migration-guide-1.10.0-1.11.0.md │ ├── migration-guide-1.11.0-1.12.0.md │ ├── migration-guide-1.12.0-1.13.0.md │ ├── migration-guide-1.13.0-1.14.0.md │ ├── migration-guide-1.14.0-1.15.0.md │ ├── migration-guide-1.15.0-1.16.0.md │ ├── migration-guide-1.3.0-1.4.0.md │ ├── migration-guide-1.4.0-1.5.0.md │ ├── migration-guide-1.5.0-1.6.0.md │ ├── migration-guide-1.6.0-1.7.0.md │ ├── migration-guide-1.7.0-1.8.0.md │ ├── migration-guide-1.8.0-1.9.0.md │ └── migration-guide-1.9.0-1.10.0.md ├── request-info-options.md ├── requirements.txt └── zh │ └── indy-walkthrough-zh.md ├── experimental └── plugins │ └── postgres_storage │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── cli_ps_create.txt │ ├── cli_ps_test.txt │ ├── design │ ├── sdk-storage-step1.png │ ├── sdk-storage-step1.puml │ ├── sdk-storage-step2.png │ ├── sdk-storage-step2.puml │ ├── sdk-storage-testing.png │ ├── sdk-storage-testing.puml │ ├── sdk-storage.png │ └── sdk-storage.puml │ ├── postgres-cli-test.sh │ ├── postgres-getting-started-multi.sh │ ├── postgres-getting-started.sh │ ├── src │ ├── errors │ │ ├── common.rs │ │ ├── crypto.rs │ │ ├── mod.rs │ │ └── wallet.rs │ ├── lib.rs │ ├── libindy │ │ ├── logger.rs │ │ ├── mod.rs │ │ └── wallet.rs │ ├── postgres_storage.rs │ ├── utils │ │ ├── byte_array.rs │ │ ├── callbacks.rs │ │ ├── crypto │ │ │ ├── base64 │ │ │ │ └── rust_base64.rs │ │ │ ├── chacha20poly1305_ietf │ │ │ │ └── sodium.rs │ │ │ ├── mod.rs │ │ │ └── sodium_type.rs │ │ ├── cstring.rs │ │ ├── ctypes.rs │ │ ├── environment.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── sequence.rs │ │ └── test.rs │ └── wql │ │ ├── language.rs │ │ ├── mod.rs │ │ ├── query.rs │ │ ├── storage.rs │ │ └── transaction.rs │ └── start_postgres.sh ├── libindy ├── Cargo.lock ├── Cargo.toml ├── android.build.sh ├── android.test.sh ├── benches │ └── wallet.rs ├── build-libindy-android.sh ├── build.rs ├── ci │ ├── alpine.dockerfile │ ├── android.dockerfile │ ├── android.prepare.sh │ ├── centos.dockerfile │ ├── setup.android.env.sh │ ├── ubuntu.dockerfile │ ├── ubuntu18.dockerfile │ └── wrappers │ │ ├── android.dockerfile │ │ ├── python.dockerfile │ │ └── wrapper-base.dockerfile ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libindy-dev.install │ ├── libindy.install │ ├── postinst │ ├── rules │ └── source │ │ └── format ├── docker-compose.yml ├── ga-android.build.sh ├── include │ ├── indy_anoncreds.h │ ├── indy_blob_storage.h │ ├── indy_cache.h │ ├── indy_core.h │ ├── indy_crypto.h │ ├── indy_did.h │ ├── indy_ledger.h │ ├── indy_logger.h │ ├── indy_metrics.h │ ├── indy_mod.h │ ├── indy_non_secrets.h │ ├── indy_pairwise.h │ ├── indy_payment.h │ ├── indy_pool.h │ ├── indy_types.h │ └── indy_wallet.h ├── indy-api-types │ ├── Cargo.toml │ └── src │ │ ├── domain │ │ ├── mod.rs │ │ └── wallet │ │ │ └── mod.rs │ │ ├── errors.rs │ │ ├── lib.rs │ │ └── validation.rs ├── indy-utils │ ├── Cargo.toml │ └── src │ │ ├── crypto │ │ ├── base64 │ │ │ └── rust_base64.rs │ │ ├── chacha20poly1305_ietf │ │ │ └── sodium.rs │ │ ├── ed25519_box │ │ │ └── sodium.rs │ │ ├── ed25519_sign │ │ │ └── sodium.rs │ │ ├── hash │ │ │ └── openssl.rs │ │ ├── hmacsha256 │ │ │ └── sodium.rs │ │ ├── mod.rs │ │ ├── pwhash_argon2i13 │ │ │ └── sodium.rs │ │ ├── randombytes │ │ │ └── sodium.rs │ │ ├── sealedbox │ │ │ └── sodium.rs │ │ ├── sodium_type.rs │ │ └── xsalsa20 │ │ │ └── sodium.rs │ │ ├── ctypes.rs │ │ ├── environment.rs │ │ ├── inmem_wallet.rs │ │ ├── lib.rs │ │ ├── sequence.rs │ │ ├── test.rs │ │ └── wql.rs ├── indy-wallet │ ├── Cargo.toml │ └── src │ │ ├── encryption.rs │ │ ├── export_import.rs │ │ ├── iterator.rs │ │ ├── language.rs │ │ ├── lib.rs │ │ ├── query_encryption.rs │ │ ├── storage │ │ ├── default │ │ │ ├── mod.rs │ │ │ ├── query.rs │ │ │ └── transaction.rs │ │ ├── mod.rs │ │ └── plugged │ │ │ └── mod.rs │ │ └── wallet.rs ├── mac.build.sh ├── rpm │ └── libindy.spec.in ├── src │ ├── api │ │ ├── anoncreds.rs │ │ ├── blob_storage.rs │ │ ├── cache.rs │ │ ├── crypto.rs │ │ ├── did.rs │ │ ├── ledger.rs │ │ ├── logger.rs │ │ ├── metrics.rs │ │ ├── mod.rs │ │ ├── non_secrets.rs │ │ ├── pairwise.rs │ │ ├── payments.rs │ │ ├── payments_v2.rs │ │ ├── pool.rs │ │ └── wallet.rs │ ├── commands │ │ ├── anoncreds │ │ │ ├── issuer.rs │ │ │ ├── mod.rs │ │ │ ├── prover.rs │ │ │ ├── tails.rs │ │ │ └── verifier.rs │ │ ├── blob_storage.rs │ │ ├── cache.rs │ │ ├── crypto.rs │ │ ├── did.rs │ │ ├── ledger.rs │ │ ├── metrics.rs │ │ ├── mod.rs │ │ ├── non_secrets.rs │ │ ├── pairwise.rs │ │ ├── payments.rs │ │ ├── pool.rs │ │ └── wallet.rs │ ├── domain │ │ ├── anoncreds │ │ │ ├── credential.rs │ │ │ ├── credential_attr_tag_policy.rs │ │ │ ├── credential_definition.rs │ │ │ ├── credential_for_proof_request.rs │ │ │ ├── credential_offer.rs │ │ │ ├── credential_request.rs │ │ │ ├── master_secret.rs │ │ │ ├── mod.rs │ │ │ ├── proof.rs │ │ │ ├── proof_request.rs │ │ │ ├── requested_credential.rs │ │ │ ├── revocation_registry.rs │ │ │ ├── revocation_registry_definition.rs │ │ │ ├── revocation_registry_delta.rs │ │ │ ├── revocation_state.rs │ │ │ └── schema.rs │ │ ├── cache.rs │ │ ├── crypto │ │ │ ├── combo_box.rs │ │ │ ├── did.rs │ │ │ ├── key.rs │ │ │ ├── mod.rs │ │ │ └── pack.rs │ │ ├── ledger │ │ │ ├── attrib.rs │ │ │ ├── auth_rule.rs │ │ │ ├── author_agreement.rs │ │ │ ├── constants.rs │ │ │ ├── cred_def.rs │ │ │ ├── ddo.rs │ │ │ ├── ledgers_freeze.rs │ │ │ ├── mod.rs │ │ │ ├── node.rs │ │ │ ├── nym.rs │ │ │ ├── pool.rs │ │ │ ├── request.rs │ │ │ ├── response.rs │ │ │ ├── rev_reg.rs │ │ │ ├── rev_reg_def.rs │ │ │ ├── schema.rs │ │ │ ├── txn.rs │ │ │ └── validator_info.rs │ │ ├── mod.rs │ │ ├── pairwise │ │ │ └── mod.rs │ │ └── pool.rs │ ├── lib.rs │ ├── services │ │ ├── anoncreds │ │ │ ├── helpers.rs │ │ │ ├── issuer.rs │ │ │ ├── mod.rs │ │ │ ├── prover.rs │ │ │ └── verifier.rs │ │ ├── blob_storage │ │ │ ├── default_reader.rs │ │ │ ├── default_writer.rs │ │ │ └── mod.rs │ │ ├── crypto │ │ │ ├── ed25519.rs │ │ │ └── mod.rs │ │ ├── ledger │ │ │ ├── merkletree │ │ │ │ ├── merkletree.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── proof.rs │ │ │ │ └── tree.rs │ │ │ └── mod.rs │ │ ├── metrics │ │ │ ├── command_metrics.rs │ │ │ ├── mod.rs │ │ │ └── models.rs │ │ ├── mod.rs │ │ ├── payments.rs │ │ └── pool │ │ │ ├── catchup.rs │ │ │ ├── commander.rs │ │ │ ├── events.rs │ │ │ ├── merkle_tree_factory.rs │ │ │ ├── mod.rs │ │ │ ├── networker.rs │ │ │ ├── pool.rs │ │ │ ├── request_handler.rs │ │ │ ├── state_proof │ │ │ ├── mod.rs │ │ │ └── node.rs │ │ │ └── types.rs │ └── utils │ │ ├── ccallback.rs │ │ ├── crypto │ │ ├── mod.rs │ │ ├── signature_serializer.rs │ │ └── verkey_builder.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── qualifier.rs │ │ ├── result.rs │ │ └── try_utils.rs └── tests │ ├── anoncreds.rs │ ├── anoncreds_demos.rs │ ├── cache.rs │ ├── crypto.rs │ ├── demo.rs │ ├── did.rs │ ├── error.rs │ ├── indy.rs │ ├── interaction.rs │ ├── ledger.rs │ ├── logger.rs │ ├── logger_lvl.rs │ ├── metrics.rs │ ├── non_secrets.rs │ ├── pairwise.rs │ ├── payments.rs │ ├── pool.rs │ ├── utils │ ├── anoncreds.rs │ ├── blob_storage.rs │ ├── cache.rs │ ├── callback.rs │ ├── constants.rs │ ├── crypto.rs │ ├── did.rs │ ├── ledger.rs │ ├── logger.rs │ ├── metrics.rs │ ├── mod.rs │ ├── non_secrets.rs │ ├── pairwise.rs │ ├── payments.rs │ ├── pool.rs │ ├── rand_utils.rs │ ├── results.rs │ ├── timeout.rs │ ├── types.rs │ └── wallet.rs │ └── wallet.rs ├── libnullpay ├── Cargo.lock ├── Cargo.toml ├── README.md ├── android.build.sh ├── android.test.sh ├── build-libnullpay-android.sh ├── build.rs ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libnullpay.install │ ├── postinst │ ├── rules │ └── source │ │ └── format ├── include │ ├── nullpay.h │ └── nullpay_mod.h ├── rpm │ └── libnullpay.spec.in ├── src │ ├── lib.rs │ ├── libindy │ │ ├── ledger.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ └── payments.rs │ ├── payment_method.rs │ ├── services │ │ ├── config_ledger.rs │ │ ├── mod.rs │ │ ├── payment_ledger.rs │ │ ├── response_storage.rs │ │ └── source_cache.rs │ └── utils │ │ ├── callbacks.rs │ │ ├── cstring.rs │ │ ├── json_helper.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── rand.rs │ │ ├── sequence.rs │ │ ├── source.rs │ │ └── types.rs └── tests │ ├── payments.rs │ └── utils │ ├── did.rs │ ├── environment.rs │ ├── ledger.rs │ ├── mod.rs │ ├── payments.rs │ ├── payments_utils.rs │ ├── plugin.rs │ ├── pool.rs │ ├── sequence.rs │ ├── test_utils.rs │ ├── types.rs │ └── wallet.rs ├── samples ├── dotnet │ ├── .gitignore │ ├── README.md │ ├── Samples.sln │ └── Samples │ │ ├── AnonCredsDemo.cs │ │ ├── AnonCredsRevocationDemo.cs │ │ ├── CryptoDemo.cs │ │ ├── LedgerDemo.cs │ │ ├── NonSecretsDemo.cs │ │ ├── Program.cs │ │ ├── Samples.csproj │ │ ├── Utils │ │ ├── EnvironmentUtils.cs │ │ ├── PoolUtils.cs │ │ └── WalletUtils.cs │ │ └── WalletDemo.cs ├── java │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── Anoncreds.java │ │ ├── AnoncredsRevocation.java │ │ ├── Crypto.java │ │ ├── Endorser.java │ │ ├── GettingStarted.java │ │ ├── Ledger.java │ │ ├── Main.java │ │ └── utils │ │ ├── EnvironmentUtils.java │ │ └── PoolUtils.java ├── nodejs │ ├── .gitignore │ ├── README.md │ ├── doc │ │ └── anoncredsRevocationScenario.puml │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── anoncredsRevocation.js │ │ ├── anoncredsRevocationScenario.js │ │ ├── colors.js │ │ ├── gettingStarted.js │ │ ├── main.js │ │ └── util.js ├── postgres-plugin │ └── nodejs │ │ └── README.md ├── python │ ├── .gitignore │ ├── README.md │ ├── setup.py │ └── src │ │ ├── __init__.py │ │ ├── anoncreds.py │ │ ├── anoncreds_revocation.py │ │ ├── crypto.py │ │ ├── endorser.py │ │ ├── getting_started.py │ │ ├── ledger.py │ │ ├── main.py │ │ ├── txn_author_agreement.py │ │ └── utils.py └── storage │ └── storage-postgres │ └── src │ └── errors │ ├── anoncreds.rs │ ├── did.rs │ ├── indy.rs │ ├── ledger.rs │ ├── payments.rs │ └── pool.rs ├── scripts └── test_zmq │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ └── main.rs ├── vcx ├── README.md ├── ci │ ├── Dockerfile-scripts │ ├── change_toml_version.py │ ├── copyNoClobber.sh │ ├── libindy-centos.dockerfile │ ├── libindy.dockerfile │ ├── libvcx.dockerfile │ ├── python.dockerfile │ ├── scripts │ │ ├── androidBuild.sh │ │ ├── androidPackage.sh │ │ ├── androidPublish.sh │ │ ├── buildnum.py │ │ ├── cargo-update-so │ │ ├── cargo-update-version │ │ ├── create_npm_deb.py │ │ ├── getCert.sh │ │ ├── githubArtifacts.py │ │ ├── gzip_so_file.py │ │ ├── installCert.sh │ │ ├── iosBuild.sh │ │ ├── package-rpm.sh │ │ ├── package.sh │ │ ├── publish.sh │ │ ├── readme.txt │ │ ├── test-process.py │ │ ├── test_update_so.py │ │ ├── toml_utils.py │ │ └── version_utils.py │ ├── test.dockerfile │ └── ubuntu.dockerfile ├── docs │ ├── aries │ │ ├── connection │ │ │ ├── connection-invitee.puml │ │ │ ├── connection-invitee.svg │ │ │ ├── connection-inviter.puml │ │ │ └── connection-inviter.svg │ │ └── credential-issuance │ │ │ ├── credential-issuance-holder-vcx.puml │ │ │ ├── credential-issuance-holder.puml │ │ │ ├── credential-issuance-issuer-vcx.puml │ │ │ └── credential-issuance-issuer.puml │ ├── getting-started │ │ └── getting-started.md │ ├── migration-guide-0.1.x-0.2.0.md │ ├── migration-guide-0.2.x-0.3.0.md │ ├── migration-guide-0.3.x-0.4.0.md │ ├── migration-guide-0.4.x-0.5.0.md │ ├── migration-guide-0.5.x-0.6.0.md │ ├── migration-guide-0.6.x-0.7.0.md │ ├── migration-guide-0.7.x-0.8.0.md │ ├── migration-guide-0.8.x-0.9.0.md │ ├── migration.md │ ├── states │ │ ├── aries │ │ │ ├── connection-invitee.puml │ │ │ ├── connection-inviter.puml │ │ │ ├── credential.puml │ │ │ ├── disclosed-proof.puml │ │ │ ├── issuer-credential.puml │ │ │ └── proof.puml │ │ └── proprietary │ │ │ ├── connection-invitee.puml │ │ │ ├── connection-inviter.puml │ │ │ ├── credential.puml │ │ │ ├── disclosed-proof.puml │ │ │ ├── issuer-credential.puml │ │ │ └── proof.puml │ └── vcx_arch.md ├── dummy-cloud-agent │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── config │ │ ├── pgsql-config.json │ │ └── sample-config.json │ ├── docker-compose.yml │ ├── docs │ │ ├── admin-api.md │ │ ├── architecture.md │ │ └── postgres-wallet.md │ └── src │ │ ├── actors │ │ ├── admin.rs │ │ ├── agent.rs │ │ ├── agent_connection.rs │ │ ├── forward_agent.rs │ │ ├── forward_agent_connection.rs │ │ ├── mod.rs │ │ ├── requester.rs │ │ └── router.rs │ │ ├── api_agent.rs │ │ ├── app.rs │ │ ├── app_admin.rs │ │ ├── domain │ │ ├── a2a.rs │ │ ├── a2connection.rs │ │ ├── admin_message.rs │ │ ├── config.rs │ │ ├── internal_message.rs │ │ ├── invite.rs │ │ ├── key_deligation_proof.rs │ │ ├── key_derivation.rs │ │ ├── message_type.rs │ │ ├── mod.rs │ │ ├── payload.rs │ │ ├── protocol_type.rs │ │ └── status.rs │ │ ├── indy │ │ ├── crypto.rs │ │ ├── did.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── pairwise.rs │ │ ├── wallet.rs │ │ └── wallet_plugin.rs │ │ ├── main.rs │ │ └── utils │ │ ├── config_env.rs │ │ ├── dyn_lib.rs │ │ ├── futures.rs │ │ ├── mod.rs │ │ ├── rand.rs │ │ ├── tests.rs │ │ └── wallet.rs ├── libvcx │ ├── Cargo.lock │ ├── Cargo.toml │ ├── android.build.sh │ ├── android.test.sh │ ├── android_build.sh │ ├── build.rs │ ├── build_scripts │ │ ├── add.trace.statements.to.src.py │ │ ├── android │ │ │ ├── README.md │ │ │ ├── debug-device │ │ │ │ ├── README.txt │ │ │ │ ├── debugvcx │ │ │ │ │ ├── 01.start.emulator.sh │ │ │ │ │ ├── 02.build.and.deploy.debugvcx.sh │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src │ │ │ │ │ │ ├── main.rs │ │ │ │ │ │ ├── main.rs.orig │ │ │ │ │ │ ├── main.rs.with.so.libs │ │ │ │ │ │ └── main.rs.with.vcx │ │ │ │ ├── mkshrc │ │ │ │ └── steps.to.rootandroid.txt │ │ │ ├── indy │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ └── make_indy.sh │ │ │ ├── libsodium │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── mac │ │ │ │ ├── .bash_profile │ │ │ │ ├── README.txt │ │ │ │ ├── cargo-config.toml.template │ │ │ │ ├── cargo.toml.reduce.size.txt │ │ │ │ ├── debug │ │ │ │ │ ├── cargo-config.toml.template │ │ │ │ │ ├── indy-sdk.build.rs.android.target.static.libs.template │ │ │ │ │ ├── libnullpay.build.rs.android.target.static.libs.template │ │ │ │ │ ├── mac.02.libindy.env.sh │ │ │ │ │ ├── mac.03.arm7.libindy.build.sh │ │ │ │ │ ├── mac.03.x86.libindy.build.sh │ │ │ │ │ ├── mac.03.x86_64.libindy.build.sh │ │ │ │ │ ├── mac.05.libvcx.env.sh │ │ │ │ │ ├── mac.06.arm7.libvcx.build.sh │ │ │ │ │ ├── mac.06.x86.libvcx.build.sh │ │ │ │ │ ├── mac.06.x86_64.libvcx.build.sh │ │ │ │ │ ├── mac.08.arm7.copy.shared.libs.to.app.sh │ │ │ │ │ ├── mac.08.x86.copy.shared.libs.to.app.sh │ │ │ │ │ ├── mac.08.x86_64.copy.shared.libs.to.app.sh │ │ │ │ │ ├── mac.09.arm7.combine.shared.libs.sh │ │ │ │ │ ├── mac.09.x86.combine.shared.libs.sh │ │ │ │ │ ├── mac.09.x86_64.combine.shared.libs.sh │ │ │ │ │ ├── mac.armv7.debug.build.aar.sh │ │ │ │ │ ├── mac.x86.debug.build.aar.sh │ │ │ │ │ ├── mac.x86_64.debug.build.aar.sh │ │ │ │ │ └── shared.functions.sh │ │ │ │ ├── indy-sdk.build.rs.android.target.static.libs.template │ │ │ │ ├── launchd.daemon.build.android.libvxc.plist │ │ │ │ ├── launchd.daemon.build.android.libvxc.sh │ │ │ │ ├── libnullpay.build.rs.android.target.static.libs.template │ │ │ │ ├── linux.build.more.android.architectures.sh │ │ │ │ ├── mac.01.libindy.setup.sh │ │ │ │ ├── mac.02.libindy.env.sh │ │ │ │ ├── mac.03.libindy.build.sh │ │ │ │ ├── mac.04.libvcx.setup.sh │ │ │ │ ├── mac.05.libvcx.env.sh │ │ │ │ ├── mac.06.libvcx.build.sh │ │ │ │ ├── mac.07.libvcx.find.android.native.deps.sh │ │ │ │ ├── mac.08.copy.shared.libs.to.app.sh │ │ │ │ ├── mac.09.combine.shared.libs.sh │ │ │ │ ├── mac.build.and.install.rust.tools.sh │ │ │ │ ├── mac.build.libsqlite3.sh │ │ │ │ ├── mac.build.libz.sh │ │ │ │ ├── mac.build.ndk.standalone.toolchain.sh │ │ │ │ ├── mac.libminiz.libsqlite3.combine.sh │ │ │ │ ├── mac.libssl.libcrypto.build.sh │ │ │ │ ├── mac.libzmq.libsodium.build.sh │ │ │ │ ├── mac.upload.android.build.zipfiles.sh │ │ │ │ ├── mac.upload.android.release.build.sh │ │ │ │ ├── mac.verify.successful.build.of.libraries.sh │ │ │ │ ├── shared.functions.sh │ │ │ │ └── vcx.aar.template.aar │ │ │ ├── openssl │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ └── make_openssl.sh │ │ │ ├── vcx │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.nondocker.sh │ │ │ │ ├── build.sh │ │ │ │ └── make_vcx.sh │ │ │ └── zmq │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ ├── ios │ │ │ └── mac │ │ │ │ ├── .bash_profile │ │ │ │ ├── README.txt │ │ │ │ ├── cargo.toml.add.debug.txt │ │ │ │ ├── cargo.toml.reduce.size.txt │ │ │ │ ├── launchd.daemon.build.libvxc.plist │ │ │ │ ├── launchd.daemon.build.libvxc.sh │ │ │ │ ├── mac.01.libindy.setup.sh │ │ │ │ ├── mac.02.libindy.env.sh │ │ │ │ ├── mac.03.libindy.build.sh │ │ │ │ ├── mac.04.libvcx.setup.sh │ │ │ │ ├── mac.05.libvcx.env.sh │ │ │ │ ├── mac.06.libvcx.build.sh │ │ │ │ ├── mac.07.libvcx.find.ios.native.deps.sh │ │ │ │ ├── mac.08.libssl.libcrypto.build.sh │ │ │ │ ├── mac.09.libzmq.libsodium.build.sh │ │ │ │ ├── mac.10.libminiz.libsqlite3.combine.sh │ │ │ │ ├── mac.11.copy.static.libs.to.app.sh │ │ │ │ ├── mac.12.combine.static.libs.sh │ │ │ │ ├── mac.13.build.cocoapod.sh │ │ │ │ ├── mac.build.and.install.rust.tools.sh │ │ │ │ ├── mac.integration.test.cocoapod.sh │ │ │ │ ├── mac.norms.local.add.trace.statements.sh │ │ │ │ ├── mac.norms.local.pod.install.sh │ │ │ │ ├── mac.norms.local.rust.dev.sh │ │ │ │ ├── mac.strip.debug.symbols.sh │ │ │ │ ├── mac.verify.successful.build.of.libraries.sh │ │ │ │ └── shared.functions.sh │ │ ├── libindy.commit.sha1.hash.txt │ │ └── macos │ │ │ ├── mac.01.libindy.setup.sh │ │ │ ├── mac.02.libindy.env.sh │ │ │ ├── mac.03.libindy.build.sh │ │ │ ├── mac.04.libvcx.setup.sh │ │ │ ├── mac.05.libvcx.env.sh │ │ │ ├── mac.06.libvcx.build.sh │ │ │ ├── mac.07.libvcx.find.ios.native.deps.sh │ │ │ ├── mac.build.and.install.rust.tools.sh │ │ │ └── shared.functions.sh │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libvcx.install │ │ ├── postinst │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── include │ │ └── vcx.h │ ├── install_toolchains.sh │ ├── rpm │ │ ├── libvcx.spec │ │ └── libvcx.spec.in │ ├── sample_config │ │ ├── config.json │ │ └── log4rs.yml │ ├── scripts │ │ ├── postinst │ │ ├── postrm │ │ └── provision_agent_keys.py │ ├── src │ │ ├── api │ │ │ ├── connection.rs │ │ │ ├── credential.rs │ │ │ ├── credential_def.rs │ │ │ ├── disclosed_proof.rs │ │ │ ├── issuer_credential.rs │ │ │ ├── logger.rs │ │ │ ├── mod.rs │ │ │ ├── proof.rs │ │ │ ├── return_types_u32.rs │ │ │ ├── schema.rs │ │ │ ├── utils.rs │ │ │ ├── vcx.rs │ │ │ └── wallet.rs │ │ ├── connection.rs │ │ ├── credential.rs │ │ ├── credential_def.rs │ │ ├── credential_request.rs │ │ ├── disclosed_proof.rs │ │ ├── error │ │ │ └── mod.rs │ │ ├── issuer_credential.rs │ │ ├── lib.rs │ │ ├── messages │ │ │ ├── agent_utils.rs │ │ │ ├── create_key.rs │ │ │ ├── get_message.rs │ │ │ ├── invite.rs │ │ │ ├── message_type.rs │ │ │ ├── mod.rs │ │ │ ├── payload.rs │ │ │ ├── proofs │ │ │ │ ├── mod.rs │ │ │ │ ├── proof_message.rs │ │ │ │ └── proof_request.rs │ │ │ ├── send_message.rs │ │ │ ├── thread.rs │ │ │ ├── update_connection.rs │ │ │ ├── update_message.rs │ │ │ ├── update_profile.rs │ │ │ └── validation.rs │ │ ├── object_cache │ │ │ └── mod.rs │ │ ├── proof.rs │ │ ├── schema.rs │ │ ├── settings.rs │ │ ├── utils │ │ │ ├── agent_info.rs │ │ │ ├── author_agreement.rs │ │ │ ├── ccallback.rs │ │ │ ├── constants.rs │ │ │ ├── cstring.rs │ │ │ ├── devsetup.rs │ │ │ ├── error.rs │ │ │ ├── file.rs │ │ │ ├── httpclient.rs │ │ │ ├── json.rs │ │ │ ├── libindy │ │ │ │ ├── anoncreds.rs │ │ │ │ ├── cache.rs │ │ │ │ ├── callback.rs │ │ │ │ ├── callback_u32.rs │ │ │ │ ├── crypto.rs │ │ │ │ ├── error_codes.rs │ │ │ │ ├── ledger.rs │ │ │ │ ├── logger.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── payments.rs │ │ │ │ ├── pool.rs │ │ │ │ ├── signus.rs │ │ │ │ └── wallet.rs │ │ │ ├── logger.rs │ │ │ ├── mod.rs │ │ │ ├── openssl.rs │ │ │ ├── option_util.rs │ │ │ ├── plugins.rs │ │ │ ├── qualifier.rs │ │ │ ├── threadpool.rs │ │ │ ├── timeout.rs │ │ │ ├── uuid.rs │ │ │ └── version_constants.rs │ │ └── v3 │ │ │ ├── handlers │ │ │ ├── connection │ │ │ │ ├── agent.rs │ │ │ │ ├── connection.rs │ │ │ │ ├── messages.rs │ │ │ │ ├── mod.rs │ │ │ │ └── states.rs │ │ │ ├── issuance │ │ │ │ ├── holder.rs │ │ │ │ ├── issuer.rs │ │ │ │ ├── messages.rs │ │ │ │ ├── mod.rs │ │ │ │ └── states.rs │ │ │ ├── mod.rs │ │ │ └── proof_presentation │ │ │ │ ├── mod.rs │ │ │ │ ├── prover │ │ │ │ ├── messages.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── prover.rs │ │ │ │ └── states.rs │ │ │ │ └── verifier │ │ │ │ ├── messages.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── states.rs │ │ │ │ └── verifier.rs │ │ │ ├── messages │ │ │ ├── a2a │ │ │ │ ├── message_family.rs │ │ │ │ ├── message_type.rs │ │ │ │ ├── mod.rs │ │ │ │ └── protocol_registry.rs │ │ │ ├── ack.rs │ │ │ ├── attachment.rs │ │ │ ├── basic_message │ │ │ │ ├── message.rs │ │ │ │ └── mod.rs │ │ │ ├── connection │ │ │ │ ├── did_doc.rs │ │ │ │ ├── invite.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── problem_report.rs │ │ │ │ ├── request.rs │ │ │ │ ├── response.rs │ │ │ │ └── service.rs │ │ │ ├── discovery │ │ │ │ ├── disclose.rs │ │ │ │ ├── mod.rs │ │ │ │ └── query.rs │ │ │ ├── error.rs │ │ │ ├── forward.rs │ │ │ ├── issuance │ │ │ │ ├── credential.rs │ │ │ │ ├── credential_ack.rs │ │ │ │ ├── credential_offer.rs │ │ │ │ ├── credential_proposal.rs │ │ │ │ ├── credential_request.rs │ │ │ │ └── mod.rs │ │ │ ├── localization.rs │ │ │ ├── mime_type.rs │ │ │ ├── mod.rs │ │ │ ├── proof_presentation │ │ │ │ ├── mod.rs │ │ │ │ ├── presentation.rs │ │ │ │ ├── presentation_ack.rs │ │ │ │ ├── presentation_proposal.rs │ │ │ │ └── presentation_request.rs │ │ │ ├── status.rs │ │ │ └── trust_ping │ │ │ │ ├── mod.rs │ │ │ │ ├── ping.rs │ │ │ │ └── ping_response.rs │ │ │ ├── mod.rs │ │ │ └── utils │ │ │ ├── encryption_envelope.rs │ │ │ └── mod.rs │ └── tests │ │ ├── logging.rs │ │ └── utils │ │ ├── demo.rs │ │ └── mod.rs ├── samples │ └── android │ │ └── WrapperTest │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── evernym │ │ │ │ └── connectme │ │ │ │ └── wrappertest │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evernym │ │ │ │ │ └── connectme │ │ │ │ │ └── wrappertest │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── evernym │ │ │ └── connectme │ │ │ └── wrappertest │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── vcx-debug │ │ └── build.gradle └── wrappers │ ├── ios │ ├── README.md │ └── vcx │ │ ├── ConnectMeVcx.h │ │ ├── ConnectMeVcx.m │ │ ├── include │ │ ├── indy_crypto.h │ │ ├── indy_ledger.h │ │ ├── indy_mod.h │ │ ├── indy_types.h │ │ └── libvcx.h │ │ ├── lib │ │ └── placeholder.txt │ │ ├── utils │ │ ├── IndyCallbacks.h │ │ ├── IndyCallbacks.m │ │ ├── IndySdk.h │ │ ├── IndySdk.m │ │ ├── IndyTypes.h │ │ ├── NSError+VcxError.h │ │ ├── NSError+VcxError.m │ │ ├── VcxCallbacks.h │ │ ├── VcxCallbacks.mm │ │ ├── VcxErrors.h │ │ ├── VcxLogger.h │ │ ├── VcxLogger.m │ │ └── VcxTypes.h │ │ ├── vcx-demo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ │ ├── vcx-demoTests │ │ ├── Info.plist │ │ ├── RNIndy.h │ │ ├── RNIndy.m │ │ ├── RNIndyTests.h │ │ └── vcx_demoTests.m │ │ ├── vcx-demoUITests │ │ ├── Info.plist │ │ └── vcx_demoUITests.m │ │ ├── vcx.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ ├── Evernym.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ ├── norm.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── pradeep.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── vcx-demo.xcscheme │ │ │ │ └── vcx.xcscheme │ │ └── xcuserdata │ │ │ ├── Evernym.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── vcx-demo.xcscheme │ │ │ │ ├── vcx.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── norm.xcuserdatad │ │ │ ├── xcdebugger │ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── pradeep.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── vcx │ │ ├── Info.plist │ │ └── vcx.h │ │ └── vcxTests │ │ ├── Info.plist │ │ └── vcxTests.m │ ├── java │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── package.json │ │ └── src │ │ │ └── main │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── ci │ │ ├── android.dockerfile │ │ ├── buildAar.sh │ │ ├── buildJar.sh │ │ ├── java.dockerfile │ │ ├── my.dockerfile │ │ └── publishJar.sh │ ├── demo-android │ │ └── AliceDemo │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── sktelecom │ │ │ │ │ └── ston │ │ │ │ │ └── demo │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── sktelecom │ │ │ │ │ │ └── ston │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── raw │ │ │ │ │ ├── genesis_txn.txt │ │ │ │ │ └── provision_config.json │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── sktelecom │ │ │ │ └── ston │ │ │ │ └── demo │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── populate_libraries.sh │ │ │ └── settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── evernym │ │ │ └── sdk │ │ │ └── vcx │ │ │ ├── ActionNotSupportedException.java │ │ │ ├── ErrorCode.java │ │ │ ├── InvalidParameterException.java │ │ │ ├── LibVcx.java │ │ │ ├── NoAgentInfoException.java │ │ │ ├── ParamGuard.java │ │ │ ├── StringUtils.java │ │ │ ├── VcxConstants.java │ │ │ ├── VcxException.java │ │ │ ├── VcxJava.java │ │ │ ├── connection │ │ │ ├── ConnectionApi.java │ │ │ ├── ConnectionErrorException.java │ │ │ ├── InvalidConnectionHandleException.java │ │ │ └── InvalidInviteDetailsException.java │ │ │ ├── credential │ │ │ ├── BuildCredentialDefReqErrorException.java │ │ │ ├── CreateCredentialDefException.java │ │ │ ├── CreateCredentialRequestErrorException.java │ │ │ ├── CredentialApi.java │ │ │ ├── CredentialDefAlreadyCreatedException.java │ │ │ ├── GetCredentialCreateMsgidResult.java │ │ │ ├── InvalidCredentialDefHandle.java │ │ │ ├── InvalidCredentialDefJsonException.java │ │ │ ├── InvalidCredentialHandleException.java │ │ │ ├── InvalidCredentialJsonException.java │ │ │ ├── InvalidCredentialRequestException.java │ │ │ └── InvalidIssuerCredentialHandleException.java │ │ │ ├── credentialDef │ │ │ ├── CredentialDefApi.java │ │ │ └── CredentialDefPrepareForEndorserResult.java │ │ │ ├── issuer │ │ │ └── IssuerApi.java │ │ │ ├── proof │ │ │ ├── CreateProofErrorException.java │ │ │ ├── CreateProofMsgIdResult.java │ │ │ ├── DisclosedProofApi.java │ │ │ ├── FailedProofComplianceException.java │ │ │ ├── GetProofResult.java │ │ │ ├── InvalidDisclosedProofHandleException.java │ │ │ ├── InvalidProofCredentialDataException.java │ │ │ ├── InvalidProofException.java │ │ │ ├── InvalidProofHandleException.java │ │ │ ├── InvalidSelfAttestedValueException.java │ │ │ └── ProofApi.java │ │ │ ├── schema │ │ │ ├── InvalidSchemaCreationException.java │ │ │ ├── InvalidSchemaException.java │ │ │ ├── InvalidSchemaSeqNoException.java │ │ │ ├── InvalidSchemahandleException.java │ │ │ ├── SchemaApi.java │ │ │ └── SchemaPrepareForEndorserResult.java │ │ │ ├── token │ │ │ ├── InsufficientTokenAmountException.java │ │ │ └── TokenApi.java │ │ │ ├── utils │ │ │ ├── InvalidConfigurationException.java │ │ │ ├── PostMsgFailureException.java │ │ │ └── UtilsApi.java │ │ │ ├── vcx │ │ │ ├── AlreadyInitializedException.java │ │ │ ├── BigNumberErrorException.java │ │ │ ├── CreatePoolConfigException.java │ │ │ ├── IndySubmitRequestErrorException.java │ │ │ ├── InvalidAttributeStructureException.java │ │ │ ├── InvalidDIDException.java │ │ │ ├── InvalidGenesisTxnPathException.java │ │ │ ├── InvalidHTTPResponseException.java │ │ │ ├── InvalidJsonException.java │ │ │ ├── InvalidKeyDelegateException.java │ │ │ ├── InvalidMasterSecretException.java │ │ │ ├── InvalidMessagesException.java │ │ │ ├── InvalidMsgPackException.java │ │ │ ├── InvalidNonceException.java │ │ │ ├── InvalidObjHandleException.java │ │ │ ├── InvalidOptionException.java │ │ │ ├── InvalidPredicateException.java │ │ │ ├── InvalidUrlException.java │ │ │ ├── InvalidVerkeyException.java │ │ │ ├── NoEndpointException.java │ │ │ ├── NoPoolOpenException.java │ │ │ ├── NotBase58Exception.java │ │ │ ├── NotReadyException.java │ │ │ ├── PoolLedgerConnectException.java │ │ │ ├── SerializationErrorException.java │ │ │ ├── TimeoutLibindyErrorException.java │ │ │ ├── UnknownErrorException.java │ │ │ ├── UnknownLibindyErrorException.java │ │ │ └── VcxApi.java │ │ │ └── wallet │ │ │ ├── WalletAccessFailedException.java │ │ │ ├── WalletAleradyOpenException.java │ │ │ ├── WalletAlreadyExistsException.java │ │ │ ├── WalletApi.java │ │ │ ├── WalletCreationException.java │ │ │ ├── WalletItemAlreadyExistsException.java │ │ │ └── WalletItemNotFoundException.java │ │ └── test │ │ └── java │ │ └── com │ │ └── evernym │ │ └── sdk │ │ └── vcx │ │ ├── ConnectionApiTest.java │ │ ├── CredentialApiTest.java │ │ ├── CredentialDefApiTest.java │ │ ├── DisclosedProofApiTest.java │ │ ├── ErrorCodeTest.java │ │ ├── ProofApiTest.java │ │ ├── SchemaApiTest.java │ │ ├── TestHelper.java │ │ ├── TokenApiTest.java │ │ ├── VcxApiTest.java │ │ ├── VcxExceptionTest.java │ │ ├── VcxUtilsTest.java │ │ └── WalletApiTest.java │ ├── node │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── ci │ │ ├── generate-docs.sh │ │ ├── node.dockerfile │ │ ├── package.sh │ │ ├── test-and-package.sh │ │ ├── test.sh │ │ └── test_wrapper.sh │ ├── demo │ │ ├── alice-signature.js │ │ ├── alice.js │ │ ├── common.js │ │ ├── docker.txn │ │ ├── faber-verify-signature.js │ │ ├── faber.js │ │ ├── logger.js │ │ └── script-comon.js │ ├── notification-server.js │ ├── package.json │ ├── src │ │ ├── api │ │ │ ├── common.ts │ │ │ ├── connection.ts │ │ │ ├── credential-def.ts │ │ │ ├── credential.ts │ │ │ ├── disclosed-proof.ts │ │ │ ├── init.ts │ │ │ ├── issuer-credential.ts │ │ │ ├── logging.ts │ │ │ ├── proof.ts │ │ │ ├── schema.ts │ │ │ ├── utils.ts │ │ │ ├── vcx-base-with-state.ts │ │ │ ├── vcx-base.ts │ │ │ ├── vcx-mock.ts │ │ │ ├── vcx-payment-txn.ts │ │ │ └── wallet.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── rustlib.ts │ │ ├── utils │ │ │ ├── error-message.ts │ │ │ ├── ffi-helpers.ts │ │ │ └── memory-management-helpers.ts │ │ └── vcx.ts │ ├── test │ │ ├── helpers │ │ │ ├── asserts.ts │ │ │ ├── entities.ts │ │ │ ├── test-constants.ts │ │ │ └── utils.ts │ │ ├── module-resolver-helper.ts │ │ ├── suite1 │ │ │ ├── connection.test.ts │ │ │ ├── credential-def.test.ts │ │ │ ├── credential.test.ts │ │ │ ├── disclosed-proof.test.ts │ │ │ ├── issuer-credential.test.ts │ │ │ ├── proof.test.ts │ │ │ ├── schema.test.ts │ │ │ ├── utils.test.ts │ │ │ └── wallet.test.ts │ │ ├── suite2 │ │ │ └── ffi.test.ts │ │ ├── suite3 │ │ │ ├── logging.1.test.ts │ │ │ └── logging.2.test.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json │ └── python3 │ ├── .gitignore │ ├── .pytest_cache │ └── v │ │ └── cache │ │ └── lastfailed │ ├── MANIFEST.in │ ├── README.md │ ├── aries-test-server │ ├── README.txt │ ├── command_handler.py │ ├── connection.py │ ├── docker.txn │ ├── invitee.py │ ├── inviter.py │ ├── server.py │ └── utils.py │ ├── ci │ ├── package.sh │ ├── python.dockerfile │ ├── test-and-package.sh │ └── test.sh │ ├── demo │ ├── README.md │ ├── acme.py │ ├── alice-pg.py │ ├── alice.py │ ├── alice_create_with_message_flow.py │ ├── alice_create_with_message_id_flow.py │ ├── alternate_wallet_path.py │ ├── demo_utils.py │ ├── docker.txn │ ├── faber-pg.py │ ├── faber.py │ ├── requirements.txt │ └── vc_auth_oidc │ │ ├── README.md │ │ └── alice_vc_auth.py │ ├── generate_docs.py │ ├── requirements.txt │ ├── setup.py │ ├── tests │ ├── conftest.py │ ├── test_connection.py │ ├── test_credential.py │ ├── test_credential_def.py │ ├── test_disclosed_proof.py │ ├── test_error.py │ ├── test_issuer_credential.py │ ├── test_proof.py │ ├── test_schema.py │ ├── test_utils.py │ ├── test_vcx_init.py │ └── test_wallet.py │ └── vcx │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── connection.py │ ├── credential.py │ ├── credential_def.py │ ├── disclosed_proof.py │ ├── issuer_credential.py │ ├── proof.py │ ├── schema.py │ ├── utils.py │ ├── vcx_base.py │ ├── vcx_init.py │ ├── vcx_stateful.py │ └── wallet.py │ ├── cdll.py │ ├── common.py │ ├── error.py │ ├── logging.py │ └── state.py └── wrappers ├── Guidelines.md ├── dotnet ├── .gitignore ├── README.md ├── docs │ ├── api │ │ ├── Hyperledger.Indy.AnonCredsApi.AnonCreds.html │ │ ├── Hyperledger.Indy.AnonCredsApi.AnoncredsAccumulatorFullException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.AnoncredsNotIssuedException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.ClaimRevokedException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.DuplicateMasterSecretNameException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.InvalidUserRevocIndexException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.IssuerCreateAndStoreCredentialDefResult.html │ │ ├── Hyperledger.Indy.AnonCredsApi.IssuerCreateAndStoreRevocRegResult.html │ │ ├── Hyperledger.Indy.AnonCredsApi.IssuerCreateCredentialResult.html │ │ ├── Hyperledger.Indy.AnonCredsApi.IssuerCreateSchemaResult.html │ │ ├── Hyperledger.Indy.AnonCredsApi.ProofRejectedException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.ProverCreateCredentialRequestResult.html │ │ ├── Hyperledger.Indy.AnonCredsApi.RevocationRegistryFullException.html │ │ ├── Hyperledger.Indy.AnonCredsApi.html │ │ ├── Hyperledger.Indy.BlobStorageApi.BlobStorage.html │ │ ├── Hyperledger.Indy.BlobStorageApi.BlobStorageReader.html │ │ ├── Hyperledger.Indy.BlobStorageApi.BlobStorageWriter.html │ │ ├── Hyperledger.Indy.BlobStorageApi.html │ │ ├── Hyperledger.Indy.CryptoApi.AuthDecryptResult.html │ │ ├── Hyperledger.Indy.CryptoApi.Crypto.html │ │ ├── Hyperledger.Indy.CryptoApi.html │ │ ├── Hyperledger.Indy.DidApi.CreateAndStoreMyDidResult.html │ │ ├── Hyperledger.Indy.DidApi.Did.html │ │ ├── Hyperledger.Indy.DidApi.EncryptResult.html │ │ ├── Hyperledger.Indy.DidApi.EndpointForDidResult.html │ │ ├── Hyperledger.Indy.DidApi.UnknownCryptoException.html │ │ ├── Hyperledger.Indy.DidApi.html │ │ ├── Hyperledger.Indy.ErrorCode.html │ │ ├── Hyperledger.Indy.IOException.html │ │ ├── Hyperledger.Indy.IndyException.html │ │ ├── Hyperledger.Indy.InvalidParameterException.html │ │ ├── Hyperledger.Indy.InvalidStateException.html │ │ ├── Hyperledger.Indy.InvalidStructureException.html │ │ ├── Hyperledger.Indy.LedgerApi.InvalidLedgerTransactionException.html │ │ ├── Hyperledger.Indy.LedgerApi.Ledger.html │ │ ├── Hyperledger.Indy.LedgerApi.LedgerConsensusException.html │ │ ├── Hyperledger.Indy.LedgerApi.LedgerSecurityException.html │ │ ├── Hyperledger.Indy.LedgerApi.ParseRegistryResponseResult.html │ │ ├── Hyperledger.Indy.LedgerApi.ParseResponseResult.html │ │ ├── Hyperledger.Indy.LedgerApi.html │ │ ├── Hyperledger.Indy.NonSecretsApi.NoRecordsException.html │ │ ├── Hyperledger.Indy.NonSecretsApi.NonSecrets.html │ │ ├── Hyperledger.Indy.NonSecretsApi.WalletSearch.html │ │ ├── Hyperledger.Indy.NonSecretsApi.html │ │ ├── Hyperledger.Indy.PairwiseApi.Pairwise.html │ │ ├── Hyperledger.Indy.PairwiseApi.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.AddRequestFeesDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.BuildGetTxnFeesReqDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.BuildGetUtxoRequstDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.BuildMintReqDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.BuildPaymentRequestDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.BuildSetTxnFeesReqDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.CreatePaymentAddressDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.ParseGetTxnFeesResponseDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.ParseGetUtxoResponseDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.ParsePaymentResponseDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.ParseResponseWithFeesDelegate.html │ │ ├── Hyperledger.Indy.PaymentsApi.NativeMethods.html │ │ ├── Hyperledger.Indy.PaymentsApi.PaymentMethod.html │ │ ├── Hyperledger.Indy.PaymentsApi.PaymentResult.html │ │ ├── Hyperledger.Indy.PaymentsApi.Payments.html │ │ ├── Hyperledger.Indy.PaymentsApi.html │ │ ├── Hyperledger.Indy.PoolApi.InvalidPoolException.html │ │ ├── Hyperledger.Indy.PoolApi.Pool.html │ │ ├── Hyperledger.Indy.PoolApi.PoolConfigNotCreatedException.html │ │ ├── Hyperledger.Indy.PoolApi.PoolLedgerConfigExistsException.html │ │ ├── Hyperledger.Indy.PoolApi.PoolLedgerTerminatedException.html │ │ ├── Hyperledger.Indy.PoolApi.html │ │ ├── Hyperledger.Indy.WalletApi.DuplicateWalletTypeException.html │ │ ├── Hyperledger.Indy.WalletApi.ICustomWallet.html │ │ ├── Hyperledger.Indy.WalletApi.InvalidWalletException.html │ │ ├── Hyperledger.Indy.WalletApi.UnknownWalletTypeException.html │ │ ├── Hyperledger.Indy.WalletApi.Wallet.html │ │ ├── Hyperledger.Indy.WalletApi.WalletAlreadyOpenedException.html │ │ ├── Hyperledger.Indy.WalletApi.WalletExistsException.html │ │ ├── Hyperledger.Indy.WalletApi.WalletType.html │ │ ├── Hyperledger.Indy.WalletApi.WalletValueNotFoundException.html │ │ ├── Hyperledger.Indy.WalletApi.WrongWalletForPoolException.html │ │ ├── Hyperledger.Indy.WalletApi.html │ │ ├── Hyperledger.Indy.html │ │ ├── index.html │ │ └── toc.html │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── favicon.png │ │ ├── hyperledger_logo.png │ │ └── logo_hl_new.png │ ├── index.html │ ├── index.json │ ├── logo.svg │ ├── manifest.json │ ├── search-stopwords.json │ ├── styles │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── lunr.js │ │ ├── lunr.min.js │ │ ├── main.css │ │ ├── main.js │ │ └── search-worker.js │ ├── toc.html │ └── xrefmap.yml ├── indy-sdk-dotnet-doc │ ├── .gitignore │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── api │ │ └── index.md │ ├── docfx.json │ ├── images │ │ ├── favicon.png │ │ ├── hyperledger_logo.png │ │ └── logo_hl_new.png │ ├── index.md │ ├── indy-sdk-dotnet-doc.csproj │ ├── packages.config │ └── toc.yml ├── indy-sdk-dotnet-test │ ├── AnonCredsTests │ │ ├── AnonCredsIntegrationTestBase.cs │ │ ├── IssuerCreateAndStoreCredentialDefinitionTest.cs │ │ ├── IssuerCreateCredentialTest.cs │ │ ├── IssuerRevokeCredentialTest.cs │ │ ├── ProverCreateCretentialRequestTest.cs │ │ ├── ProverCreateMasterSecretTest.cs │ │ ├── ProverCreateProofTest.cs │ │ ├── ProverGetCredentialTest.cs │ │ ├── ProverGetCredentialsForProofRequestTest.cs │ │ ├── ProverGetCredentialsTest.cs │ │ ├── ProverSearchCredentialsForProofRequestTest.cs │ │ ├── ProverSearchCredentialsTest.cs │ │ ├── ProverStoreCredentialTest.cs │ │ └── VerifierVerifyProofTest.cs │ ├── CryptoTests │ │ ├── AnonCryptTest.cs │ │ ├── AnonDecryptTest.cs │ │ ├── AuthCryptTest.cs │ │ ├── AuthDecryptTest.cs │ │ ├── CreateKeyTest.cs │ │ ├── GetKeyMetadataTest.cs │ │ ├── PackUnpackMessageTest.cs │ │ ├── SetKeyMetadataTest.cs │ │ ├── SignTest.cs │ │ └── VerifyTest.cs │ ├── DemoTests │ │ ├── AnonCredsDemoTest.cs │ │ ├── CryptoDemoTest.cs │ │ ├── LedgerDemoTest.cs │ │ └── ReplaceKeysDemoTest.cs │ ├── DidTests │ │ ├── CreateMyDidTest.cs │ │ ├── GetDidMetadataTest.cs │ │ ├── GetEndpointForDidTest.cs │ │ ├── KeyForDidTest.cs │ │ ├── KeyForLocalDidTest.cs │ │ ├── ReplaceKeysApplyTest.cs │ │ ├── ReplaceKeysStartTest.cs │ │ ├── SetDidMetadataTest.cs │ │ ├── SetEndpointForDidTest.cs │ │ └── StoreTheirDidTest.cs │ ├── IndyIntegrationTestBase.cs │ ├── IndyIntegrationTestWithPoolAndSingleWallet.cs │ ├── IndyIntegrationTestWithSingleWallet.cs │ ├── InitHelper.cs │ ├── InteractionTests │ │ └── AnoncredsRevocationInteractionTest.cs │ ├── LedgerTests │ │ ├── AttribRequestTest.cs │ │ ├── CredDefRequestTest.cs │ │ ├── GetRevocRegDefRequestTest.cs │ │ ├── GetTxnRequestTest.cs │ │ ├── GetValidatorInfoRequestTest.cs │ │ ├── LedgerIntegrationTestBase.cs │ │ ├── MultiSignRequestTest.cs │ │ ├── NodeRequestTest.cs │ │ ├── NymRequestTest.cs │ │ ├── PoolConfigRequestTest.cs │ │ ├── PoolRestartRequestTest.cs │ │ ├── PoolUpgradeRequestTest.cs │ │ ├── RequestsTest.cs │ │ ├── RevocGetRegDeltaRequestTest.cs │ │ ├── RevocGetRegRequestTest.cs │ │ ├── RevocRegDefRequestTest.cs │ │ ├── RevocRegEntryRequestTest.cs │ │ ├── SchemaRequestTest.cs │ │ ├── SignRequestTest.cs │ │ └── SubmitActionTest.cs │ ├── NonSecretsTests │ │ ├── AddRecordTagsTest.cs │ │ ├── AddRecordTest.cs │ │ ├── DeleteRecordTagsTest.cs │ │ ├── DeleteRecordTest.cs │ │ ├── GetRecordTest.cs │ │ ├── NonSecretsIntegrationTestBase.cs │ │ ├── SearchTest.cs │ │ ├── UpdateRecordTagsTest.cs │ │ └── UpdateRecordValueTest.cs │ ├── PairwiseTests │ │ ├── CreatePairwiseTest.cs │ │ ├── GetPairwiseTests.cs │ │ ├── ListPairwiseTests.cs │ │ ├── PairwiseExistsTests.cs │ │ ├── PairwiseIntegrationTestBase.cs │ │ └── SetPairwiseMetadataTests.cs │ ├── PaymentTests │ │ ├── AddRequestFeesTest.cs │ │ ├── BuildGetPaymentSourcesRequestTest.cs │ │ ├── BuildGetTxnFeesRequestTest.cs │ │ ├── BuildMintRequestTest.cs │ │ ├── BuildPaymentRequestTest.cs │ │ ├── BuildSetTxnFeesRequestTest.cs │ │ ├── BuildVerifyPaymentRequestTest.cs │ │ ├── CreatePaymentAddressTest.cs │ │ ├── ListPaymentAddressesTest.cs │ │ ├── ParseGetPaymentSourcesResponseTest.cs │ │ ├── ParseGetTxnFeesResponseTest.cs │ │ ├── ParsePaymentResponseTest.cs │ │ ├── ParseResponseWithFeesTest.cs │ │ ├── ParseVerifyPaymentResponseTest.cs │ │ └── PaymentIntegrationTestBase.cs │ ├── PoolTests │ │ ├── ClosePoolTest.cs │ │ ├── CreatePoolTest.cs │ │ ├── DeletePoolTest.cs │ │ ├── DisposePoolTest.cs │ │ ├── OpenPoolTest.cs │ │ └── RefreshPoolTest.cs │ ├── Program.cs │ ├── SetupAssemblyInitializer.cs │ ├── Util │ │ ├── Base58Check │ │ │ ├── ArrayHelpers.cs │ │ │ └── Base58CheckEncoding.cs │ │ ├── EnvironmentUtils.cs │ │ ├── PoolUtils.cs │ │ ├── StorageUtils.cs │ │ └── WalletUtils.cs │ ├── WalletTests │ │ ├── CloseWalletTest.cs │ │ ├── CreateWalletTest.cs │ │ ├── DeleteWalletTest.cs │ │ ├── ExportWalletTest.cs │ │ ├── GenerateWalletKeyTest.cs │ │ ├── ImportWalletTest.cs │ │ └── OpenWalletTest.cs │ └── indy-sdk-dotnet-test.csproj ├── indy-sdk-dotnet.sln └── indy-sdk-dotnet │ ├── AnonCredsApi │ ├── AnonCreds.cs │ ├── CredDefAlreadyExistsException.cs │ ├── CredentialRevokedException.cs │ ├── CredentialSearch.cs │ ├── CredentialSearchForProofRequest.cs │ ├── DuplicateMasterSecretNameException.cs │ ├── InvalidUserRevocIdException.cs │ ├── IssuerCreateAndStoreCredentialDefResult.cs │ ├── IssuerCreateAndStoreRevocRegResult.cs │ ├── IssuerCreateCredentialResult.cs │ ├── IssuerCreateSchemaResult.cs │ ├── NativeMethods.cs │ ├── ProofRejectedException.cs │ ├── ProverCreateCredentialRequestResult.cs │ └── RevocationRegistryFullException.cs │ ├── BlobStorageApi │ ├── BlobStorage.cs │ ├── BlobStorageReader.cs │ ├── BlobStorageWriter.cs │ └── NativeMethods.cs │ ├── Consts.cs │ ├── CryptoApi │ ├── AuthDecryptResult.cs │ ├── Crypto.cs │ └── NativeMethods.cs │ ├── DidApi │ ├── CreateAndStoreMyDidResult.cs │ ├── Did.cs │ ├── EncryptResult.cs │ ├── EndpointForDidResult.cs │ ├── NativeMethods.cs │ └── UnknownCryptoException.cs │ ├── ErrorCode.cs │ ├── IOException.cs │ ├── IndyException.cs │ ├── InvalidParameterException.cs │ ├── InvalidStateException.cs │ ├── InvalidStructureException.cs │ ├── LedgerApi │ ├── InvalidLedgerTransactionException.cs │ ├── Ledger.cs │ ├── LedgerConsensusException.cs │ ├── LedgerSecurityException.cs │ ├── NativeMethods.cs │ ├── ParseRegistryResponseResult.cs │ └── ParseResponseResult.cs │ ├── NonSecretsApi │ ├── NativeMethods.cs │ ├── NoRecordsException.cs │ ├── NonSecrets.cs │ └── WalletSearch.cs │ ├── PairwiseApi │ ├── NativeMethods.cs │ └── Pairwise.cs │ ├── PaymentsApi │ ├── ExtraFundsException.cs │ ├── IncompatiblePaymentException.cs │ ├── InsufficientFundsException.cs │ ├── NativeMethods.cs │ ├── PaymentMethod.cs │ ├── PaymentOperationNotSupportedException.cs │ ├── PaymentResult.cs │ ├── PaymentSourceDoesNotExistException.cs │ ├── Payments.cs │ └── UnknownPaymentMethodException.cs │ ├── PoolApi │ ├── InvalidPoolException.cs │ ├── NativeMethods.cs │ ├── Pool.cs │ ├── PoolConfigNotCreatedException.cs │ ├── PoolIncompatibleProtocolVersionException.cs │ ├── PoolLedgerConfigExistsException.cs │ └── PoolLedgerTerminatedException.cs │ ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Utils │ ├── CallbackHelper.cs │ ├── Logger.cs │ ├── NativeMethods.cs │ ├── ParamGuard.cs │ └── PendingCommands.cs │ ├── WalletApi │ ├── DuplicateWalletTypeException.cs │ ├── InvalidWalletException.cs │ ├── NativeMethods.cs │ ├── UnknownWalletTypeException.cs │ ├── Wallet.cs │ ├── WalletAccessFailedException.cs │ ├── WalletAlreadyOpenedException.cs │ ├── WalletDecodingException.cs │ ├── WalletEncryptionException.cs │ ├── WalletExistsException.cs │ ├── WalletInputException.cs │ ├── WalletInvalidQueryException.cs │ ├── WalletItemAlreadyExistsException.cs │ ├── WalletItemNotFoundException.cs │ ├── WalletNotFoundException.cs │ ├── WalletStorageException.cs │ └── WrongWalletForPoolException.cs │ └── indy-sdk-dotnet.csproj ├── ios ├── .ruby-version ├── Gemfile ├── README.md ├── Tests │ └── libzmq-ios-test-app │ │ └── ZeroMQ_Test │ │ ├── .gitignore │ │ ├── Podfile │ │ ├── ZeroMQ_Test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── ZeroMQ_Test.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── ZeroMQ_Test │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZeroMQTests.h │ │ ├── ZeroMQTests.mm │ │ ├── main.m │ │ └── zhelpers.h └── libindy-pod │ ├── .gitignore │ ├── Indy-demo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Indy-demo.xcscheme │ ├── Indy-demo │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ ├── Indy-demoTests │ ├── Base58Test.m │ ├── Case Tests │ │ ├── Anoncreds │ │ │ ├── AnoncredsHighCases.m │ │ │ ├── AnoncredsMediumCasesDemos.m │ │ │ └── ProverDeleteCredentialCases.m │ │ ├── Cache │ │ │ └── CacheHighCases.mm │ │ ├── Crypto │ │ │ └── CryptoHighCases.mm │ │ ├── Did │ │ │ └── DidHighCases.m │ │ ├── Ledger │ │ │ ├── LedgerBuildRequest.mm │ │ │ └── LedgerSendRequests.mm │ │ ├── NonSecrets │ │ │ └── NonSecretsHighCases.mm │ │ ├── Pairwise │ │ │ └── PairwiseHighCases.m │ │ ├── Payment │ │ │ └── PaymentHighCases.mm │ │ ├── Pool │ │ │ └── PoolHighCases.m │ │ └── Wallet │ │ │ └── WalletHighCases.m │ ├── Demo Tests │ │ ├── AnoncredsDemo.mm │ │ ├── CryptoDemo.mm │ │ ├── Interaction.mm │ │ ├── LedgerDemo.mm │ │ └── LoggerDemo.mm │ ├── Info.plist │ ├── Test Utils │ │ ├── AnoncredsUtils.h │ │ ├── AnoncredsUtils.m │ │ ├── BlobStorageUtils.h │ │ ├── BlobStorageUtils.m │ │ ├── CacheUtils.h │ │ ├── CacheUtils.m │ │ ├── ClosureUtils.h │ │ ├── ClosureUtils.m │ │ ├── CryptoUtils.h │ │ ├── CryptoUtils.mm │ │ ├── DidUtils.h │ │ ├── DidUtils.mm │ │ ├── Environment.h │ │ ├── Environment.m │ │ ├── LedgerUtils.h │ │ ├── LedgerUtils.mm │ │ ├── NonSecretsUtils.h │ │ ├── NonSecretsUtils.m │ │ ├── PairwiseUtils.h │ │ ├── PairwiseUtils.m │ │ ├── PaymentUtils.h │ │ ├── PaymentUtils.m │ │ ├── PoolUtils.h │ │ ├── PoolUtils.m │ │ ├── SequenceUtils.h │ │ ├── SequenceUtils.m │ │ ├── TestUtils.h │ │ ├── TestUtils.m │ │ ├── WalletUtils.h │ │ └── WalletUtils.m │ └── Utils │ │ ├── NSArray+JSON.h │ │ ├── NSArray+JSON.m │ │ ├── NSDictionary+JSON.h │ │ ├── NSDictionary+JSON.m │ │ ├── NSString+Validation.h │ │ └── NSString+Validation.m │ ├── Indy.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Indy.xcscheme │ ├── Indy │ ├── Indy.h │ ├── Info.plist │ ├── Utils │ │ ├── Exstensions │ │ │ ├── DictionaryExtension.swift │ │ │ ├── NSDictionary+JSON.h │ │ │ ├── NSDictionary+JSON.m │ │ │ ├── NSError+IndyError.h │ │ │ ├── NSError+IndyError.m │ │ │ ├── NSString+JSON.h │ │ │ ├── NSString+JSON.m │ │ │ └── StringExtensions.swift │ │ ├── IndyCallbacks.h │ │ ├── IndyCallbacks.mm │ │ ├── IndyLogger.h │ │ ├── IndyLogger.m │ │ ├── IndySequenceUtils.h │ │ └── IndySequenceUtils.m │ └── Wrapper │ │ ├── BlobStorage.h │ │ ├── BlobStorage.mm │ │ ├── IndyAnoncreds.h │ │ ├── IndyAnoncreds.mm │ │ ├── IndyBlobStorage.h │ │ ├── IndyBlobStorage.mm │ │ ├── IndyCache.h │ │ ├── IndyCache.mm │ │ ├── IndyCrypto.h │ │ ├── IndyCrypto.mm │ │ ├── IndyDid.h │ │ ├── IndyDid.mm │ │ ├── IndyErrors.h │ │ ├── IndyLedger.h │ │ ├── IndyLedger.mm │ │ ├── IndyNonSecrets.h │ │ ├── IndyNonSecrets.mm │ │ ├── IndyPairwise.h │ │ ├── IndyPairwise.mm │ │ ├── IndyPayment.h │ │ ├── IndyPayment.mm │ │ ├── IndyPool.h │ │ ├── IndyPool.mm │ │ ├── IndyTypes.h │ │ ├── IndyUtils.h │ │ ├── IndyUtils.mm │ │ ├── IndyWallet.h │ │ └── IndyWallet.mm │ ├── Podfile │ └── universal_framework.sh ├── java ├── .gitignore ├── README.md ├── lib │ └── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── hyperledger │ │ │ └── indy │ │ │ └── sdk │ │ │ ├── Callbacks.java │ │ │ ├── ErrorCode.java │ │ │ ├── IOException.java │ │ │ ├── IndyBool.java │ │ │ ├── IndyConstants.java │ │ │ ├── IndyException.java │ │ │ ├── IndyJava.java │ │ │ ├── InvalidParameterException.java │ │ │ ├── InvalidStateException.java │ │ │ ├── InvalidStructureException.java │ │ │ ├── LibIndy.java │ │ │ ├── ParamGuard.java │ │ │ ├── StringUtils.java │ │ │ ├── anoncreds │ │ │ ├── Anoncreds.java │ │ │ ├── AnoncredsInvalidUserRevocId.java │ │ │ ├── AnoncredsJSONParameters.java │ │ │ ├── AnoncredsResults.java │ │ │ ├── CredDefAlreadyExistsException.java │ │ │ ├── CredentialRevokedException.java │ │ │ ├── CredentialsSearch.java │ │ │ ├── CredentialsSearchForProofReq.java │ │ │ ├── DuplicateMasterSecretNameException.java │ │ │ ├── ProofRejectedException.java │ │ │ └── RevocationRegistryFullException.java │ │ │ ├── blob_storage │ │ │ ├── BlobStorageReader.java │ │ │ └── BlobStorageWriter.java │ │ │ ├── cache │ │ │ └── Cache.java │ │ │ ├── crypto │ │ │ ├── Crypto.java │ │ │ ├── CryptoJSONParameters.java │ │ │ ├── CryptoResults.java │ │ │ └── UnknownCryptoException.java │ │ │ ├── did │ │ │ ├── Did.java │ │ │ ├── DidAlreadyExistsException.java │ │ │ ├── DidJSONParameters.java │ │ │ └── DidResults.java │ │ │ ├── ledger │ │ │ ├── ConsensusException.java │ │ │ ├── Ledger.java │ │ │ ├── LedgerInvalidTransactionException.java │ │ │ ├── LedgerJSONParameters.java │ │ │ ├── LedgerResults.java │ │ │ ├── LedgerSecurityException.java │ │ │ └── TimeoutException.java │ │ │ ├── metrics │ │ │ └── Metrics.java │ │ │ ├── non_secrets │ │ │ ├── WalletRecord.java │ │ │ └── WalletSearch.java │ │ │ ├── pairwise │ │ │ └── Pairwise.java │ │ │ ├── payments │ │ │ ├── ExtraFundsException.java │ │ │ ├── IncompatiblePaymentException.java │ │ │ ├── InsufficientFundsException.java │ │ │ ├── PaymentOperationNotSupportedException.java │ │ │ ├── PaymentSourceDoesNotExistException.java │ │ │ ├── Payments.java │ │ │ ├── PaymentsResults.java │ │ │ ├── TransactionNotAllowedException.java │ │ │ └── UnknownPaymentMethodException.java │ │ │ ├── pool │ │ │ ├── InvalidPoolException.java │ │ │ ├── LedgerNotFoundException.java │ │ │ ├── Pool.java │ │ │ ├── PoolConfigNotCreatedException.java │ │ │ ├── PoolIncompatibleProtocolVersionException.java │ │ │ ├── PoolJSONParameters.java │ │ │ ├── PoolLedgerConfigExistsException.java │ │ │ ├── PoolLedgerTerminatedException.java │ │ │ └── PoolResults.java │ │ │ └── wallet │ │ │ ├── DuplicateWalletTypeException.java │ │ │ ├── InvalidWalletException.java │ │ │ ├── UnknownWalletTypeException.java │ │ │ ├── Wallet.java │ │ │ ├── WalletAccessFailedException.java │ │ │ ├── WalletAlreadyOpenedException.java │ │ │ ├── WalletDecodingException.java │ │ │ ├── WalletEncryptionException.java │ │ │ ├── WalletExistsException.java │ │ │ ├── WalletInputException.java │ │ │ ├── WalletInvalidQueryException.java │ │ │ ├── WalletItemAlreadyExistsException.java │ │ │ ├── WalletItemNotFoundException.java │ │ │ ├── WalletJSONParameters.java │ │ │ ├── WalletNotFoundException.java │ │ │ ├── WalletResults.java │ │ │ ├── WalletStorageException.java │ │ │ └── WrongWalletForPoolException.java │ └── resources │ │ └── log4j.xml │ └── test │ └── java │ └── org │ └── hyperledger │ └── indy │ └── sdk │ ├── IndyIntegrationTest.java │ ├── IndyIntegrationTestWithPoolAndSingleWallet.java │ ├── IndyIntegrationTestWithSingleWallet.java │ ├── JsonObjectSimilar.java │ ├── anoncreds │ ├── AnoncredsIntegrationTest.java │ ├── IssuerCreateAndStoreCredentialDefinitionTest.java │ ├── IssuerCreateCredentialTest.java │ ├── IssuerRevokeCredentialTest.java │ ├── IssuerRotateCredentialDefinitionTest.java │ ├── ProverCreateCredentialRequestTest.java │ ├── ProverCreateMasterSecretTest.java │ ├── ProverCreateProofTest.java │ ├── ProverDeleteCredentialTest.java │ ├── ProverGetCredentialTest.java │ ├── ProverGetCredentialsForProofRequestTest.java │ ├── ProverGetCredentialsTest.java │ ├── ProverSearchCredentialsForProofRequestTest.java │ ├── ProverSearchCredentialsTest.java │ ├── ProverStoreCredentialTest.java │ ├── ToUnqualifiedTest.java │ └── VerifierVerifyProofTest.java │ ├── cache │ ├── CacheIntegrationTest.java │ ├── CredDefCacheTest.java │ └── SchemaCacheTest.java │ ├── crypto │ ├── CreateKeyTest.java │ ├── CryptoAnonCryptTest.java │ ├── CryptoAnonDecryptTest.java │ ├── CryptoAuthCryptTest.java │ ├── CryptoAuthDecryptTest.java │ ├── CryptoSignTest.java │ ├── CryptoVerifyTest.java │ ├── GetKeyMetadataTest.java │ ├── PackUnpackMessageTest.java │ └── SetKeyMetadataTest.java │ ├── demo │ ├── AnoncredsDemoTest.java │ ├── CryptoDemoTest.java │ ├── LedgerDemoTest.java │ └── ReplaceKeysDemoTest.java │ ├── did │ ├── AbbreviateVerkeyTest.java │ ├── CreateMyDidTest.java │ ├── GetDidMetadataTest.java │ ├── GetDidWithMetaTest.java │ ├── GetEndpointForDidTest.java │ ├── KeyForDidTest.java │ ├── KeyForLocalDidTest.java │ ├── ListDidsWithMetaTest.java │ ├── QualifyDidTest.java │ ├── ReplaceKeysApplyTest.java │ ├── ReplaceKeysStartTest.java │ ├── SetDidMetadataTest.java │ ├── SetEndpointForDidTest.java │ └── StoreTheirDidTest.java │ ├── error │ └── GetErrorTest.java │ ├── interaction │ ├── AnoncredsRevocationInteractionTest.java │ └── AnoncredsVerifyProofAfterCredentialRevokeTest.java │ ├── ledger │ ├── AcceptanceMechanismRequestTest.java │ ├── AppendAuthorAgreementAcceptanceToRequestTest.java │ ├── AppendRequestEndorserTest.java │ ├── AttribRequestsTest.java │ ├── AuthRuleRequestsTest.java │ ├── AuthorAgreementRequestTest.java │ ├── CredDefRequestsTest.java │ ├── GetFrozenLedgersTest.java │ ├── GetResponseMetadata.java │ ├── GetRevocRegDefRequestTest.java │ ├── GetTxnRequestTest.java │ ├── GetValidatorInfoRequestTest.java │ ├── LedgerIntegrationTest.java │ ├── MultiSignRequestTest.java │ ├── NodeRequestsTest.java │ ├── NymRequestsTest.java │ ├── PoolConfigRequestTest.java │ ├── PoolRestartRequestTest.java │ ├── PoolUpgradeRequestTest.java │ ├── RequestsTest.java │ ├── RevocGetRegDeltaRequestTest.java │ ├── RevocGetRegRequestTest.java │ ├── RevocRegDefRequestTest.java │ ├── RevocRegEntryRequestTest.java │ ├── SchemaRequestsTest.java │ ├── SignRequestTest.java │ └── SubmitActionTest.java │ ├── metrics │ └── CollectMetricsTest.java │ ├── non_secrets │ ├── AddRecordTagsTest.java │ ├── AddRecordTest.java │ ├── DeleteRecordTagsTest.java │ ├── DeleteRecordTest.java │ ├── GetRecordTest.java │ ├── NonSecretsIntegrationTest.java │ ├── SearchTest.java │ ├── UpdateRecordTagsTest.java │ └── UpdateRecordValueTest.java │ ├── pairwise │ ├── CreatePairwiseTest.java │ ├── GetPairwiseTest.java │ ├── ListPairwiseTest.java │ ├── PairwiseExistsTest.java │ ├── PairwiseIntegrationTest.java │ └── SetPairwiseMetadataTest.java │ ├── payment │ ├── AddRequestFeesTest.java │ ├── BuildGetPaymentSourcesRequestTest.java │ ├── BuildGetPaymentSourcesWithFromRequestTest.java │ ├── BuildGetTxnFeesRequestTest.java │ ├── BuildMintRequestTest.java │ ├── BuildPaymentRequestTest.java │ ├── BuildSetTxnFeesRequestTest.java │ ├── BuildVerifyPaymentRequestTest.java │ ├── CreatePaymentAddressTest.java │ ├── GetRequestInfoTest.java │ ├── ListPaymentAddressesTest.java │ ├── ParseGetPaymentSourcesResponseTest.java │ ├── ParseGetPaymentSourcesWithFromResponseTest.java │ ├── ParseGetTxnFeesResponseTest.java │ ├── ParsePaymentResponseTest.java │ ├── ParseResponseWithFeesTest.java │ ├── ParseVerifyPaymentResponseTest.java │ ├── PaymentIntegrationTest.java │ ├── PreparePaymentExtraWithAcceptanceDataTest.java │ ├── SignWithAddressTest.java │ └── VerifyWithAddressTest.java │ ├── pool │ ├── ClosePoolTest.java │ ├── CreatePoolTest.java │ ├── DeletePoolTest.java │ ├── ListPoolsTest.java │ ├── OpenPoolTest.java │ ├── RefreshPoolTest.java │ └── SetProtocolVersionTest.java │ ├── utils │ ├── EnvironmentUtils.java │ ├── InitHelper.java │ ├── PoolUtils.java │ └── StorageUtils.java │ └── wallet │ ├── CloseWalletTest.java │ ├── CreateWalletTest.java │ ├── DeleteWalletTest.java │ ├── ExportWalletTest.java │ ├── GenerateWalletKeyTest.java │ ├── ImportWalletTest.java │ └── OpenWalletTest.java ├── nodejs ├── .gitignore ├── README.md ├── binding.gyp ├── package.json ├── src │ ├── IndyError.js │ ├── index.js │ ├── indy.cc │ ├── indyBinding.js │ └── wrapIndyCallback.js └── test │ ├── anoncreds.js │ ├── blob.js │ ├── cache.js │ ├── crypto.js │ ├── did.js │ ├── helpers │ ├── initTestPool.js │ └── makeTestPool.js │ ├── index.js │ ├── ledger.js │ ├── logger.js │ ├── logger2.js │ ├── mod.js │ ├── nonsecrets.js │ ├── pairwise.js │ ├── payments.js │ ├── pool.js │ └── wallet.js ├── python ├── .gitignore ├── MANIFEST.in ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── files │ └── rules ├── indy │ ├── __init__.py │ ├── anoncreds.py │ ├── blob_storage.py │ ├── cache.py │ ├── crypto.py │ ├── did.py │ ├── error.py │ ├── ledger.py │ ├── libindy.py │ ├── non_secrets.py │ ├── pairwise.py │ ├── payment.py │ ├── pool.py │ └── wallet.py ├── setup.py ├── tests │ ├── __init__.py │ ├── anoncreds │ │ ├── conftest.py │ │ ├── test_issuer_create_and_store_credential_def.py │ │ ├── test_issuer_create_credential.py │ │ ├── test_issuer_rotate_credential_def.py │ │ ├── test_proof_predicates.py │ │ ├── test_prover_create_credential_req.py │ │ ├── test_prover_create_master_secret.py │ │ ├── test_prover_create_proof.py │ │ ├── test_prover_credential_attr_tag_policy.py │ │ ├── test_prover_delete_credential.py │ │ ├── test_prover_get_credential.py │ │ ├── test_prover_get_credentials.py │ │ ├── test_prover_get_credentials_for_proof_req.py │ │ ├── test_prover_search_credentials.py │ │ ├── test_prover_search_credentials_for_proof_req.py │ │ ├── test_prover_store_credential.py │ │ ├── test_to_unqualified.py │ │ └── test_verify_proof.py │ ├── cache │ │ ├── __init__.py │ │ ├── test_get_cred_def.py │ │ ├── test_get_schema.py │ │ ├── test_purge_cred_def_cache.py │ │ └── test_purge_schema_cache.py │ ├── conftest.py │ ├── crypto │ │ ├── test_anon_crypt.py │ │ ├── test_anon_decrypt.py │ │ ├── test_auth_crypt.py │ │ ├── test_auth_decrypt.py │ │ ├── test_create_key.py │ │ ├── test_crypto_sign.py │ │ ├── test_crypto_verify.py │ │ ├── test_get_key_metadata.py │ │ ├── test_pack_message.py │ │ ├── test_set_key_metadata.py │ │ └── test_unpack_message.py │ ├── demo │ │ ├── test_anoncreds.py │ │ ├── test_crypto.py │ │ ├── test_ledger.py │ │ └── test_replace_keys.py │ ├── did │ │ ├── __init__.py │ │ ├── test_abbreviate_verkey.py │ │ ├── test_create_and_store_my_did.py │ │ ├── test_get_did_metadata.py │ │ ├── test_get_endpoint_for_did.py │ │ ├── test_get_my_did_with_meta.py │ │ ├── test_key_for_did.py │ │ ├── test_key_for_local_did.py │ │ ├── test_list_my_dids_with_meta.py │ │ ├── test_qualify_did.py │ │ ├── test_replace_keys_apply.py │ │ ├── test_replace_keys_start.py │ │ ├── test_set_did_metadata.py │ │ ├── test_set_endpoint_for_did.py │ │ └── test_store_their_did.py │ ├── error │ │ └── test_error.py │ ├── indy.py │ ├── interation │ │ ├── test_interaction.py │ │ └── test_interaction_several_credentials.py │ ├── ledger │ │ ├── test_build_acceptance_mechanisms_request.py │ │ ├── test_build_attrib_request.py │ │ ├── test_build_auth_rule_request.py │ │ ├── test_build_cred_def_request.py │ │ ├── test_build_get_attrib_request.py │ │ ├── test_build_get_cred_def_txn.py │ │ ├── test_build_get_frozen_ledgers_request.py │ │ ├── test_build_get_nym_request.py │ │ ├── test_build_get_revoc_reg_def_request.py │ │ ├── test_build_get_revoc_reg_delta_request.py │ │ ├── test_build_get_revoc_reg_request.py │ │ ├── test_build_get_schema_request.py │ │ ├── test_build_get_txn_request.py │ │ ├── test_build_get_validator_info_request.py │ │ ├── test_build_ledgers_freeze_request.py │ │ ├── test_build_node_request.py │ │ ├── test_build_nym_request.py │ │ ├── test_build_pool_config_request.py │ │ ├── test_build_pool_restart_request.py │ │ ├── test_build_pool_upgrade_request.py │ │ ├── test_build_revoc_reg_def_request.py │ │ ├── test_build_revoc_reg_entry_request.py │ │ ├── test_build_schema_request.py │ │ ├── test_build_txn_author_agreement_request.py │ │ ├── test_get_response_metadata.py │ │ ├── test_multi_sign_request.py │ │ ├── test_sign_and_submit_request.py │ │ ├── test_sign_request.py │ │ ├── test_submit_action.py │ │ ├── test_submit_request.py │ │ ├── text_append_author_agreement_meta.py │ │ └── text_append_request_endorser.py │ ├── non_secrets │ │ ├── common.py │ │ ├── test_add_wallet_record.py │ │ ├── test_add_wallet_record_tags.py │ │ ├── test_delete_wallet_record.py │ │ ├── test_delete_wallet_record_tags.py │ │ ├── test_get_wallet_record.py │ │ ├── test_update_wallet_record_tags.py │ │ ├── test_update_wallet_record_value.py │ │ └── test_wallet_search.py │ ├── pairwise │ │ ├── test_create_pairwise.py │ │ ├── test_get_pairwise.py │ │ ├── test_list_pairwise.py │ │ ├── test_pairwise_exists.py │ │ └── test_set_pairwise_metadata.py │ ├── payment │ │ ├── constants.py │ │ ├── test_add_request_fees.py │ │ ├── test_build_get_payment_sources_request.py │ │ ├── test_build_get_payment_sources_with_from_request.py │ │ ├── test_build_get_txn_fees_request.py │ │ ├── test_build_mint_request.py │ │ ├── test_build_payment_request.py │ │ ├── test_build_set_txn_fees_request.py │ │ ├── test_build_verify_payment_request.py │ │ ├── test_create_payment_address.py │ │ ├── test_get_request_info.py │ │ ├── test_list_payment_addresses.py │ │ ├── test_parse_get_payment_sources_response.py │ │ ├── test_parse_get_payment_sources_with_from_response.py │ │ ├── test_parse_get_txn_fees_response.py │ │ ├── test_parse_payment_response.py │ │ ├── test_parse_response_with_fees.py │ │ ├── test_parse_verify_payment_response.py │ │ ├── test_prepare_payment_extra_with_acceptance_data.py │ │ ├── test_sign_with_address.py │ │ └── test_verify_with_address.py │ ├── pool │ │ ├── test_close_pool_ledger.py │ │ ├── test_create_pool_ledger_config.py │ │ ├── test_delete_pool_ledger_config.py │ │ ├── test_open_pool_ledger.py │ │ ├── test_refresh_pool_ledger.py │ │ └── test_set_protocol_version.py │ └── wallet │ │ ├── __init__.py │ │ ├── test_close_wallet.py │ │ ├── test_create_wallet.py │ │ ├── test_delete_wallet.py │ │ ├── test_export_wallet.py │ │ ├── test_generate_wallet_key.py │ │ ├── test_import_wallet.py │ │ └── test_open_wallet.py └── version.txt └── rust ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── indy-sys ├── Cargo.toml ├── build.rs └── src │ ├── anoncreds.rs │ ├── blob_storage.rs │ ├── cache.rs │ ├── crypto.rs │ ├── did.rs │ ├── ledger.rs │ ├── lib.rs │ ├── logger.rs │ ├── metrics.rs │ ├── non_secrets.rs │ ├── pairwise.rs │ ├── payments.rs │ ├── pool.rs │ └── wallet.rs ├── scripts ├── gen_ffi.pl └── gen_from_ffi.pl ├── src ├── anoncreds.rs ├── blob_storage.rs ├── cache.rs ├── crypto.rs ├── did.rs ├── ledger.rs ├── lib.rs ├── logger.rs ├── macros │ └── mod.rs ├── metrics.rs ├── pairwise.rs ├── payments.rs ├── pool.rs ├── utils │ ├── callbacks.rs │ ├── ctypes.rs │ ├── mod.rs │ └── sequence.rs └── wallet.rs └── tests ├── config.rs ├── crypto.rs ├── did.rs ├── ledger.rs ├── metrics.rs ├── pairwise.rs ├── payment.rs ├── pool.rs ├── utils ├── b58.rs ├── constants.rs ├── did.rs ├── environment.rs ├── file.rs ├── mod.rs ├── pool.rs ├── rand.rs ├── setup.rs └── wallet.rs └── wallet.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/test-android/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/.github/actions/test-android/action.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Jenkinsfile.cd -------------------------------------------------------------------------------- /Jenkinsfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Jenkinsfile.ci -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Specs/libindy/0.1.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/0.1.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/0.1.2/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/0.1.2/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/0.1.3/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/0.1.3/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/0.1.4/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/0.1.4/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.1.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.1.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.10.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.10.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.10.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.10.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.11.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.11.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.11.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.11.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.12.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.12.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.13.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.13.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.14.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.14.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.14.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.14.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.14.2/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.14.2/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.15.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.15.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.16.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.16.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.2.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.2.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.3.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.3.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.3.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.3.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.4.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.4.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.5.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.5.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.2/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.2/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.3/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.3/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.4/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.4/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.5/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.5/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.6/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.6/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.7/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.7/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.6.8/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.6.8/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.7.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.7.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.8.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.8.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.8.1/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.8.1/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.8.2/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.8.2/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.8.3/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.8.3/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libindy/1.9.0/libindy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libindy/1.9.0/libindy.podspec.json -------------------------------------------------------------------------------- /Specs/libzmq/4.2.3/libzmq.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/libzmq/4.2.3/libzmq.podspec.json -------------------------------------------------------------------------------- /Specs/milagro/3.0.0/milagro.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/milagro/3.0.0/milagro.podspec.json -------------------------------------------------------------------------------- /Specs/vcx/0.0.1/vcx.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.1/vcx.podspec.json -------------------------------------------------------------------------------- /Specs/vcx/0.0.10/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.10/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.11/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.11/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.12/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.12/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.13/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.13/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.131/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.131/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.132/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.132/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.133/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.133/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.134/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.134/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.14/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.14/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.15/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.15/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.19/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.19/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.2/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.2/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.20/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.20/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.21/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.21/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.22/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.22/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.23/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.23/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.24/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.24/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.25/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.25/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.26/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.26/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.28/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.28/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.29/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.29/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.30/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.30/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.31/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.31/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.32/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.32/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.33/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.33/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.34/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.34/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.35/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.35/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.36/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.36/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.37/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.37/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.38/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.38/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.39/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.39/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.4/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.4/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.40/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.40/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.41/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.41/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.45/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.45/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.46/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.46/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.47/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.47/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.48/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.48/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.49/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.49/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.50/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.50/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.51/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.51/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.52/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.52/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.53/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.53/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.54/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.54/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.7/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.7/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.8/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.8/vcx.podspec -------------------------------------------------------------------------------- /Specs/vcx/0.0.9/vcx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/Specs/vcx/0.0.9/vcx.podspec -------------------------------------------------------------------------------- /ci/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /ci/android-zip-and-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/android-zip-and-upload.sh -------------------------------------------------------------------------------- /ci/deb-build-and-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/deb-build-and-upload.sh -------------------------------------------------------------------------------- /ci/ga-ios-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/ga-ios-build.sh -------------------------------------------------------------------------------- /ci/indy-pool.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/indy-pool.dockerfile -------------------------------------------------------------------------------- /ci/ios-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/ios-build.sh -------------------------------------------------------------------------------- /ci/macos-zip-and-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/macos-zip-and-upload.sh -------------------------------------------------------------------------------- /ci/rpm-build-and-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/rpm-build-and-upload.sh -------------------------------------------------------------------------------- /ci/win-zip-and-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/ci/win-zip-and-upload.sh -------------------------------------------------------------------------------- /cli/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/Cargo.lock -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/build.rs -------------------------------------------------------------------------------- /cli/cli.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/cli.dockerfile -------------------------------------------------------------------------------- /cli/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/debian/changelog -------------------------------------------------------------------------------- /cli/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /cli/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/debian/control -------------------------------------------------------------------------------- /cli/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/debian/copyright -------------------------------------------------------------------------------- /cli/debian/indy-cli.install: -------------------------------------------------------------------------------- 1 | target/release/indy-cli usr/bin/ 2 | -------------------------------------------------------------------------------- /cli/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/debian/postinst -------------------------------------------------------------------------------- /cli/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # 3 | 4 | %: 5 | dh $@ 6 | -------------------------------------------------------------------------------- /cli/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /cli/docker_pool_transactions_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/docker_pool_transactions_genesis -------------------------------------------------------------------------------- /cli/linux-sample-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/linux-sample-config.json -------------------------------------------------------------------------------- /cli/logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/logger.yml -------------------------------------------------------------------------------- /cli/rpm/indy-cli.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/rpm/indy-cli.spec.in -------------------------------------------------------------------------------- /cli/src/command_executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/command_executor.rs -------------------------------------------------------------------------------- /cli/src/commands/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/common.rs -------------------------------------------------------------------------------- /cli/src/commands/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/did.rs -------------------------------------------------------------------------------- /cli/src/commands/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/ledger.rs -------------------------------------------------------------------------------- /cli/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/mod.rs -------------------------------------------------------------------------------- /cli/src/commands/payment_address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/payment_address.rs -------------------------------------------------------------------------------- /cli/src/commands/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/pool.rs -------------------------------------------------------------------------------- /cli/src/commands/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/commands/wallet.rs -------------------------------------------------------------------------------- /cli/src/libindy/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/did.rs -------------------------------------------------------------------------------- /cli/src/libindy/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/ledger.rs -------------------------------------------------------------------------------- /cli/src/libindy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/mod.rs -------------------------------------------------------------------------------- /cli/src/libindy/payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/payment.rs -------------------------------------------------------------------------------- /cli/src/libindy/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/pool.rs -------------------------------------------------------------------------------- /cli/src/libindy/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/libindy/wallet.rs -------------------------------------------------------------------------------- /cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/main.rs -------------------------------------------------------------------------------- /cli/src/utils/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/environment.rs -------------------------------------------------------------------------------- /cli/src/utils/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/file.rs -------------------------------------------------------------------------------- /cli/src/utils/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/history.rs -------------------------------------------------------------------------------- /cli/src/utils/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/logger.rs -------------------------------------------------------------------------------- /cli/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/mod.rs -------------------------------------------------------------------------------- /cli/src/utils/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/table.rs -------------------------------------------------------------------------------- /cli/src/utils/term.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/term.rs -------------------------------------------------------------------------------- /cli/src/utils/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/cli/src/utils/test.rs -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/conf.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/acceptance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/acceptance.md -------------------------------------------------------------------------------- /docs/architecture/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/index.rst -------------------------------------------------------------------------------- /docs/architecture/indy-sdk-components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/indy-sdk-components.svg -------------------------------------------------------------------------------- /docs/architecture/language-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/language-bindings.md -------------------------------------------------------------------------------- /docs/architecture/libindy_components.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/libindy_components.puml -------------------------------------------------------------------------------- /docs/architecture/libindy_components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/libindy_components.svg -------------------------------------------------------------------------------- /docs/architecture/libindy_layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/libindy_layers.md -------------------------------------------------------------------------------- /docs/architecture/threading-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/threading-model.md -------------------------------------------------------------------------------- /docs/architecture/threading-model.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/threading-model.puml -------------------------------------------------------------------------------- /docs/architecture/threading_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/architecture/threading_model.svg -------------------------------------------------------------------------------- /docs/build-guides/android-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/android-build.md -------------------------------------------------------------------------------- /docs/build-guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/index.rst -------------------------------------------------------------------------------- /docs/build-guides/mac-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/mac-build.md -------------------------------------------------------------------------------- /docs/build-guides/rhel-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/rhel-build.md -------------------------------------------------------------------------------- /docs/build-guides/ubuntu-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/ubuntu-build.md -------------------------------------------------------------------------------- /docs/build-guides/windows-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/build-guides/windows-build.md -------------------------------------------------------------------------------- /docs/concepts/default-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/concepts/default-wallet.md -------------------------------------------------------------------------------- /docs/concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/concepts/index.rst -------------------------------------------------------------------------------- /docs/concepts/revocation/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/concepts/revocation/tails.png -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributors/cd-pipeline.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/cd-pipeline.puml -------------------------------------------------------------------------------- /docs/contributors/cd-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/cd-pipeline.svg -------------------------------------------------------------------------------- /docs/contributors/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/index.rst -------------------------------------------------------------------------------- /docs/contributors/release-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/release-workflow.md -------------------------------------------------------------------------------- /docs/contributors/signing-commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/signing-commits.md -------------------------------------------------------------------------------- /docs/contributors/test-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/contributors/test-design.md -------------------------------------------------------------------------------- /docs/design/001-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/001-cli/README.md -------------------------------------------------------------------------------- /docs/design/001-cli/cli-components.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/001-cli/cli-components.puml -------------------------------------------------------------------------------- /docs/design/001-cli/cli-components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/001-cli/cli-components.svg -------------------------------------------------------------------------------- /docs/design/002-anoncreds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/002-anoncreds/README.md -------------------------------------------------------------------------------- /docs/design/003-wallet-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/003-wallet-storage/README.md -------------------------------------------------------------------------------- /docs/design/005-dkms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/README.md -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_0.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_1.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_10.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_11.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_12.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_13.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_14.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_15.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_16.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_17.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_18.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_19.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_2.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_20.png -------------------------------------------------------------------------------- /docs/design/005-dkms/images/image_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/images/image_21.png -------------------------------------------------------------------------------- /docs/design/005-dkms/shamir_secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/005-dkms/shamir_secret.md -------------------------------------------------------------------------------- /docs/design/006-cli-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/006-cli-plugins/README.md -------------------------------------------------------------------------------- /docs/design/007-cli-payments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/007-cli-payments/README.md -------------------------------------------------------------------------------- /docs/design/013-caching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/013-caching/README.md -------------------------------------------------------------------------------- /docs/design/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/design/index.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/how-tos/.gitignore: -------------------------------------------------------------------------------- 1 | */*/Cargo.lock 2 | __pycache__ -------------------------------------------------------------------------------- /docs/how-tos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/README.md -------------------------------------------------------------------------------- /docs/how-tos/negotiate-proof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/negotiate-proof/README.md -------------------------------------------------------------------------------- /docs/how-tos/not-yet-written.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/not-yet-written.md -------------------------------------------------------------------------------- /docs/how-tos/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/prerequisites.md -------------------------------------------------------------------------------- /docs/how-tos/rotate-key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/rotate-key/README.md -------------------------------------------------------------------------------- /docs/how-tos/rotate-key/nodejs/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/rotate-key/nodejs/util.js -------------------------------------------------------------------------------- /docs/how-tos/send-secure-msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/send-secure-msg/README.md -------------------------------------------------------------------------------- /docs/how-tos/trouble-shooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/how-tos/trouble-shooting.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/migration-guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/migration-guides/index.rst -------------------------------------------------------------------------------- /docs/request-info-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/request-info-options.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/zh/indy-walkthrough-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/docs/zh/indy-walkthrough-zh.md -------------------------------------------------------------------------------- /libindy/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/Cargo.lock -------------------------------------------------------------------------------- /libindy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/Cargo.toml -------------------------------------------------------------------------------- /libindy/android.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/android.build.sh -------------------------------------------------------------------------------- /libindy/android.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/android.test.sh -------------------------------------------------------------------------------- /libindy/benches/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/benches/wallet.rs -------------------------------------------------------------------------------- /libindy/build-libindy-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/build-libindy-android.sh -------------------------------------------------------------------------------- /libindy/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/build.rs -------------------------------------------------------------------------------- /libindy/ci/alpine.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/alpine.dockerfile -------------------------------------------------------------------------------- /libindy/ci/android.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/android.dockerfile -------------------------------------------------------------------------------- /libindy/ci/android.prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/android.prepare.sh -------------------------------------------------------------------------------- /libindy/ci/centos.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/centos.dockerfile -------------------------------------------------------------------------------- /libindy/ci/setup.android.env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/setup.android.env.sh -------------------------------------------------------------------------------- /libindy/ci/ubuntu.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/ubuntu.dockerfile -------------------------------------------------------------------------------- /libindy/ci/ubuntu18.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/ubuntu18.dockerfile -------------------------------------------------------------------------------- /libindy/ci/wrappers/android.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/wrappers/android.dockerfile -------------------------------------------------------------------------------- /libindy/ci/wrappers/python.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ci/wrappers/python.dockerfile -------------------------------------------------------------------------------- /libindy/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/changelog -------------------------------------------------------------------------------- /libindy/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /libindy/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/control -------------------------------------------------------------------------------- /libindy/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/copyright -------------------------------------------------------------------------------- /libindy/debian/libindy-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/libindy-dev.install -------------------------------------------------------------------------------- /libindy/debian/libindy.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/libindy.install -------------------------------------------------------------------------------- /libindy/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/debian/postinst -------------------------------------------------------------------------------- /libindy/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # 3 | 4 | %: 5 | dh $@ 6 | -------------------------------------------------------------------------------- /libindy/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /libindy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/docker-compose.yml -------------------------------------------------------------------------------- /libindy/ga-android.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/ga-android.build.sh -------------------------------------------------------------------------------- /libindy/include/indy_anoncreds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_anoncreds.h -------------------------------------------------------------------------------- /libindy/include/indy_blob_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_blob_storage.h -------------------------------------------------------------------------------- /libindy/include/indy_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_cache.h -------------------------------------------------------------------------------- /libindy/include/indy_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_core.h -------------------------------------------------------------------------------- /libindy/include/indy_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_crypto.h -------------------------------------------------------------------------------- /libindy/include/indy_did.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_did.h -------------------------------------------------------------------------------- /libindy/include/indy_ledger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_ledger.h -------------------------------------------------------------------------------- /libindy/include/indy_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_logger.h -------------------------------------------------------------------------------- /libindy/include/indy_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_metrics.h -------------------------------------------------------------------------------- /libindy/include/indy_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_mod.h -------------------------------------------------------------------------------- /libindy/include/indy_non_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_non_secrets.h -------------------------------------------------------------------------------- /libindy/include/indy_pairwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_pairwise.h -------------------------------------------------------------------------------- /libindy/include/indy_payment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_payment.h -------------------------------------------------------------------------------- /libindy/include/indy_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_pool.h -------------------------------------------------------------------------------- /libindy/include/indy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_types.h -------------------------------------------------------------------------------- /libindy/include/indy_wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/include/indy_wallet.h -------------------------------------------------------------------------------- /libindy/indy-api-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-api-types/Cargo.toml -------------------------------------------------------------------------------- /libindy/indy-api-types/src/domain/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod wallet; -------------------------------------------------------------------------------- /libindy/indy-api-types/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-api-types/src/errors.rs -------------------------------------------------------------------------------- /libindy/indy-api-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-api-types/src/lib.rs -------------------------------------------------------------------------------- /libindy/indy-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/Cargo.toml -------------------------------------------------------------------------------- /libindy/indy-utils/src/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/crypto/mod.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/ctypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/ctypes.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/environment.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/inmem_wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/inmem_wallet.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/lib.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/sequence.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/test.rs -------------------------------------------------------------------------------- /libindy/indy-utils/src/wql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-utils/src/wql.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/Cargo.toml -------------------------------------------------------------------------------- /libindy/indy-wallet/src/encryption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/encryption.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/src/iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/iterator.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/src/language.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/language.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/lib.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/storage/mod.rs -------------------------------------------------------------------------------- /libindy/indy-wallet/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/indy-wallet/src/wallet.rs -------------------------------------------------------------------------------- /libindy/mac.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/mac.build.sh -------------------------------------------------------------------------------- /libindy/rpm/libindy.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/rpm/libindy.spec.in -------------------------------------------------------------------------------- /libindy/src/api/anoncreds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/anoncreds.rs -------------------------------------------------------------------------------- /libindy/src/api/blob_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/blob_storage.rs -------------------------------------------------------------------------------- /libindy/src/api/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/cache.rs -------------------------------------------------------------------------------- /libindy/src/api/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/crypto.rs -------------------------------------------------------------------------------- /libindy/src/api/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/did.rs -------------------------------------------------------------------------------- /libindy/src/api/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/ledger.rs -------------------------------------------------------------------------------- /libindy/src/api/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/logger.rs -------------------------------------------------------------------------------- /libindy/src/api/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/metrics.rs -------------------------------------------------------------------------------- /libindy/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/mod.rs -------------------------------------------------------------------------------- /libindy/src/api/non_secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/non_secrets.rs -------------------------------------------------------------------------------- /libindy/src/api/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/pairwise.rs -------------------------------------------------------------------------------- /libindy/src/api/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/payments.rs -------------------------------------------------------------------------------- /libindy/src/api/payments_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/payments_v2.rs -------------------------------------------------------------------------------- /libindy/src/api/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/pool.rs -------------------------------------------------------------------------------- /libindy/src/api/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/api/wallet.rs -------------------------------------------------------------------------------- /libindy/src/commands/anoncreds/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/anoncreds/mod.rs -------------------------------------------------------------------------------- /libindy/src/commands/blob_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/blob_storage.rs -------------------------------------------------------------------------------- /libindy/src/commands/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/cache.rs -------------------------------------------------------------------------------- /libindy/src/commands/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/crypto.rs -------------------------------------------------------------------------------- /libindy/src/commands/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/did.rs -------------------------------------------------------------------------------- /libindy/src/commands/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/ledger.rs -------------------------------------------------------------------------------- /libindy/src/commands/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/metrics.rs -------------------------------------------------------------------------------- /libindy/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/mod.rs -------------------------------------------------------------------------------- /libindy/src/commands/non_secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/non_secrets.rs -------------------------------------------------------------------------------- /libindy/src/commands/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/pairwise.rs -------------------------------------------------------------------------------- /libindy/src/commands/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/payments.rs -------------------------------------------------------------------------------- /libindy/src/commands/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/pool.rs -------------------------------------------------------------------------------- /libindy/src/commands/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/commands/wallet.rs -------------------------------------------------------------------------------- /libindy/src/domain/anoncreds/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/anoncreds/mod.rs -------------------------------------------------------------------------------- /libindy/src/domain/anoncreds/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/anoncreds/proof.rs -------------------------------------------------------------------------------- /libindy/src/domain/anoncreds/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/anoncreds/schema.rs -------------------------------------------------------------------------------- /libindy/src/domain/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/cache.rs -------------------------------------------------------------------------------- /libindy/src/domain/crypto/combo_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/crypto/combo_box.rs -------------------------------------------------------------------------------- /libindy/src/domain/crypto/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/crypto/did.rs -------------------------------------------------------------------------------- /libindy/src/domain/crypto/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/crypto/key.rs -------------------------------------------------------------------------------- /libindy/src/domain/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/crypto/mod.rs -------------------------------------------------------------------------------- /libindy/src/domain/crypto/pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/crypto/pack.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/attrib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/attrib.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/auth_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/auth_rule.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/constants.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/cred_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/cred_def.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/ddo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/ddo.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/mod.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/node.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/nym.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/nym.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/pool.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/request.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/response.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/rev_reg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/rev_reg.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/schema.rs -------------------------------------------------------------------------------- /libindy/src/domain/ledger/txn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/ledger/txn.rs -------------------------------------------------------------------------------- /libindy/src/domain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/mod.rs -------------------------------------------------------------------------------- /libindy/src/domain/pairwise/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/pairwise/mod.rs -------------------------------------------------------------------------------- /libindy/src/domain/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/domain/pool.rs -------------------------------------------------------------------------------- /libindy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/lib.rs -------------------------------------------------------------------------------- /libindy/src/services/anoncreds/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/anoncreds/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/crypto/ed25519.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/crypto/ed25519.rs -------------------------------------------------------------------------------- /libindy/src/services/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/crypto/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/ledger/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/metrics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/metrics/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/metrics/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/metrics/models.rs -------------------------------------------------------------------------------- /libindy/src/services/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/payments.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/catchup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/catchup.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/commander.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/commander.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/events.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/mod.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/networker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/networker.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/pool.rs -------------------------------------------------------------------------------- /libindy/src/services/pool/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/services/pool/types.rs -------------------------------------------------------------------------------- /libindy/src/utils/ccallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/ccallback.rs -------------------------------------------------------------------------------- /libindy/src/utils/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/crypto/mod.rs -------------------------------------------------------------------------------- /libindy/src/utils/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/logger.rs -------------------------------------------------------------------------------- /libindy/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/mod.rs -------------------------------------------------------------------------------- /libindy/src/utils/qualifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/qualifier.rs -------------------------------------------------------------------------------- /libindy/src/utils/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/result.rs -------------------------------------------------------------------------------- /libindy/src/utils/try_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/src/utils/try_utils.rs -------------------------------------------------------------------------------- /libindy/tests/anoncreds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/anoncreds.rs -------------------------------------------------------------------------------- /libindy/tests/anoncreds_demos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/anoncreds_demos.rs -------------------------------------------------------------------------------- /libindy/tests/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/cache.rs -------------------------------------------------------------------------------- /libindy/tests/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/crypto.rs -------------------------------------------------------------------------------- /libindy/tests/demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/demo.rs -------------------------------------------------------------------------------- /libindy/tests/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/did.rs -------------------------------------------------------------------------------- /libindy/tests/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/error.rs -------------------------------------------------------------------------------- /libindy/tests/indy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/indy.rs -------------------------------------------------------------------------------- /libindy/tests/interaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/interaction.rs -------------------------------------------------------------------------------- /libindy/tests/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/ledger.rs -------------------------------------------------------------------------------- /libindy/tests/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/logger.rs -------------------------------------------------------------------------------- /libindy/tests/logger_lvl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/logger_lvl.rs -------------------------------------------------------------------------------- /libindy/tests/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/metrics.rs -------------------------------------------------------------------------------- /libindy/tests/non_secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/non_secrets.rs -------------------------------------------------------------------------------- /libindy/tests/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/pairwise.rs -------------------------------------------------------------------------------- /libindy/tests/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/payments.rs -------------------------------------------------------------------------------- /libindy/tests/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/pool.rs -------------------------------------------------------------------------------- /libindy/tests/utils/anoncreds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/anoncreds.rs -------------------------------------------------------------------------------- /libindy/tests/utils/blob_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/blob_storage.rs -------------------------------------------------------------------------------- /libindy/tests/utils/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/cache.rs -------------------------------------------------------------------------------- /libindy/tests/utils/callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/callback.rs -------------------------------------------------------------------------------- /libindy/tests/utils/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/constants.rs -------------------------------------------------------------------------------- /libindy/tests/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/crypto.rs -------------------------------------------------------------------------------- /libindy/tests/utils/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/did.rs -------------------------------------------------------------------------------- /libindy/tests/utils/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/ledger.rs -------------------------------------------------------------------------------- /libindy/tests/utils/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/logger.rs -------------------------------------------------------------------------------- /libindy/tests/utils/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/metrics.rs -------------------------------------------------------------------------------- /libindy/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/mod.rs -------------------------------------------------------------------------------- /libindy/tests/utils/non_secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/non_secrets.rs -------------------------------------------------------------------------------- /libindy/tests/utils/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/pairwise.rs -------------------------------------------------------------------------------- /libindy/tests/utils/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/payments.rs -------------------------------------------------------------------------------- /libindy/tests/utils/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/pool.rs -------------------------------------------------------------------------------- /libindy/tests/utils/rand_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/rand_utils.rs -------------------------------------------------------------------------------- /libindy/tests/utils/results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/results.rs -------------------------------------------------------------------------------- /libindy/tests/utils/timeout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/timeout.rs -------------------------------------------------------------------------------- /libindy/tests/utils/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/types.rs -------------------------------------------------------------------------------- /libindy/tests/utils/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/utils/wallet.rs -------------------------------------------------------------------------------- /libindy/tests/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libindy/tests/wallet.rs -------------------------------------------------------------------------------- /libnullpay/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/Cargo.lock -------------------------------------------------------------------------------- /libnullpay/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/Cargo.toml -------------------------------------------------------------------------------- /libnullpay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/README.md -------------------------------------------------------------------------------- /libnullpay/android.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/android.build.sh -------------------------------------------------------------------------------- /libnullpay/android.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/android.test.sh -------------------------------------------------------------------------------- /libnullpay/build-libnullpay-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/build-libnullpay-android.sh -------------------------------------------------------------------------------- /libnullpay/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/build.rs -------------------------------------------------------------------------------- /libnullpay/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/debian/changelog -------------------------------------------------------------------------------- /libnullpay/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /libnullpay/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/debian/control -------------------------------------------------------------------------------- /libnullpay/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/debian/copyright -------------------------------------------------------------------------------- /libnullpay/debian/libnullpay.install: -------------------------------------------------------------------------------- 1 | target/release/libnullpay.so usr/lib/ 2 | -------------------------------------------------------------------------------- /libnullpay/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/debian/postinst -------------------------------------------------------------------------------- /libnullpay/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # 3 | 4 | %: 5 | dh $@ 6 | -------------------------------------------------------------------------------- /libnullpay/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /libnullpay/include/nullpay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/include/nullpay.h -------------------------------------------------------------------------------- /libnullpay/include/nullpay_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/include/nullpay_mod.h -------------------------------------------------------------------------------- /libnullpay/rpm/libnullpay.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/rpm/libnullpay.spec.in -------------------------------------------------------------------------------- /libnullpay/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/lib.rs -------------------------------------------------------------------------------- /libnullpay/src/libindy/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/libindy/ledger.rs -------------------------------------------------------------------------------- /libnullpay/src/libindy/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/libindy/logger.rs -------------------------------------------------------------------------------- /libnullpay/src/libindy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/libindy/mod.rs -------------------------------------------------------------------------------- /libnullpay/src/libindy/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/libindy/payments.rs -------------------------------------------------------------------------------- /libnullpay/src/payment_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/payment_method.rs -------------------------------------------------------------------------------- /libnullpay/src/services/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/services/mod.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/callbacks.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/cstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/cstring.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/json_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/json_helper.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/logger.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/mod.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/rand.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/sequence.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/source.rs -------------------------------------------------------------------------------- /libnullpay/src/utils/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/src/utils/types.rs -------------------------------------------------------------------------------- /libnullpay/tests/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/payments.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/did.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/environment.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/ledger.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/mod.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/payments.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/plugin.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/pool.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/sequence.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/test_utils.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/types.rs -------------------------------------------------------------------------------- /libnullpay/tests/utils/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/libnullpay/tests/utils/wallet.rs -------------------------------------------------------------------------------- /samples/dotnet/.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | -------------------------------------------------------------------------------- /samples/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/README.md -------------------------------------------------------------------------------- /samples/dotnet/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples.sln -------------------------------------------------------------------------------- /samples/dotnet/Samples/CryptoDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples/CryptoDemo.cs -------------------------------------------------------------------------------- /samples/dotnet/Samples/LedgerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples/LedgerDemo.cs -------------------------------------------------------------------------------- /samples/dotnet/Samples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/Samples/Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples/Samples.csproj -------------------------------------------------------------------------------- /samples/dotnet/Samples/WalletDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/dotnet/Samples/WalletDemo.cs -------------------------------------------------------------------------------- /samples/java/.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | /.settings/ 4 | /target/ 5 | /bin/ 6 | 7 | -------------------------------------------------------------------------------- /samples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/java/README.md -------------------------------------------------------------------------------- /samples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/java/pom.xml -------------------------------------------------------------------------------- /samples/java/src/main/java/Crypto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/java/src/main/java/Crypto.java -------------------------------------------------------------------------------- /samples/java/src/main/java/Ledger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/java/src/main/java/Ledger.java -------------------------------------------------------------------------------- /samples/java/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/java/src/main/java/Main.java -------------------------------------------------------------------------------- /samples/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /samples/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/README.md -------------------------------------------------------------------------------- /samples/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/package.json -------------------------------------------------------------------------------- /samples/nodejs/src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/src/colors.js -------------------------------------------------------------------------------- /samples/nodejs/src/gettingStarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/src/gettingStarted.js -------------------------------------------------------------------------------- /samples/nodejs/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/src/main.js -------------------------------------------------------------------------------- /samples/nodejs/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/nodejs/src/util.js -------------------------------------------------------------------------------- /samples/python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /samples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/README.md -------------------------------------------------------------------------------- /samples/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/setup.py -------------------------------------------------------------------------------- /samples/python/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/python/src/anoncreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/anoncreds.py -------------------------------------------------------------------------------- /samples/python/src/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/crypto.py -------------------------------------------------------------------------------- /samples/python/src/endorser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/endorser.py -------------------------------------------------------------------------------- /samples/python/src/getting_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/getting_started.py -------------------------------------------------------------------------------- /samples/python/src/ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/ledger.py -------------------------------------------------------------------------------- /samples/python/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/main.py -------------------------------------------------------------------------------- /samples/python/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/samples/python/src/utils.py -------------------------------------------------------------------------------- /scripts/test_zmq/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/scripts/test_zmq/Cargo.lock -------------------------------------------------------------------------------- /scripts/test_zmq/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/scripts/test_zmq/Cargo.toml -------------------------------------------------------------------------------- /scripts/test_zmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/scripts/test_zmq/README.md -------------------------------------------------------------------------------- /scripts/test_zmq/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/scripts/test_zmq/build.rs -------------------------------------------------------------------------------- /scripts/test_zmq/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/scripts/test_zmq/src/main.rs -------------------------------------------------------------------------------- /vcx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/README.md -------------------------------------------------------------------------------- /vcx/ci/Dockerfile-scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/Dockerfile-scripts -------------------------------------------------------------------------------- /vcx/ci/change_toml_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/change_toml_version.py -------------------------------------------------------------------------------- /vcx/ci/copyNoClobber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/copyNoClobber.sh -------------------------------------------------------------------------------- /vcx/ci/libindy-centos.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/libindy-centos.dockerfile -------------------------------------------------------------------------------- /vcx/ci/libindy.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/libindy.dockerfile -------------------------------------------------------------------------------- /vcx/ci/libvcx.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/libvcx.dockerfile -------------------------------------------------------------------------------- /vcx/ci/python.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/python.dockerfile -------------------------------------------------------------------------------- /vcx/ci/scripts/androidBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/androidBuild.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/androidPackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/androidPackage.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/androidPublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/androidPublish.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/buildnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/buildnum.py -------------------------------------------------------------------------------- /vcx/ci/scripts/cargo-update-so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/cargo-update-so -------------------------------------------------------------------------------- /vcx/ci/scripts/cargo-update-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/cargo-update-version -------------------------------------------------------------------------------- /vcx/ci/scripts/create_npm_deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/create_npm_deb.py -------------------------------------------------------------------------------- /vcx/ci/scripts/getCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/getCert.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/githubArtifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/githubArtifacts.py -------------------------------------------------------------------------------- /vcx/ci/scripts/gzip_so_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/gzip_so_file.py -------------------------------------------------------------------------------- /vcx/ci/scripts/installCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/installCert.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/iosBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/iosBuild.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/package-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/package-rpm.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/package.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/publish.sh -------------------------------------------------------------------------------- /vcx/ci/scripts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/readme.txt -------------------------------------------------------------------------------- /vcx/ci/scripts/test-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/test-process.py -------------------------------------------------------------------------------- /vcx/ci/scripts/test_update_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/test_update_so.py -------------------------------------------------------------------------------- /vcx/ci/scripts/toml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/toml_utils.py -------------------------------------------------------------------------------- /vcx/ci/scripts/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/scripts/version_utils.py -------------------------------------------------------------------------------- /vcx/ci/test.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/test.dockerfile -------------------------------------------------------------------------------- /vcx/ci/ubuntu.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/ci/ubuntu.dockerfile -------------------------------------------------------------------------------- /vcx/docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/docs/migration.md -------------------------------------------------------------------------------- /vcx/docs/states/aries/credential.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/docs/states/aries/credential.puml -------------------------------------------------------------------------------- /vcx/docs/states/aries/proof.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/docs/states/aries/proof.puml -------------------------------------------------------------------------------- /vcx/docs/states/proprietary/proof.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/docs/states/proprietary/proof.puml -------------------------------------------------------------------------------- /vcx/docs/vcx_arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/docs/vcx_arch.md -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/Cargo.lock -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/Cargo.toml -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/README.md -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/build.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/api_agent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/api_agent.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/app.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/app_admin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/app_admin.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/indy/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/indy/did.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/indy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/indy/mod.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/main.rs -------------------------------------------------------------------------------- /vcx/dummy-cloud-agent/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/dummy-cloud-agent/src/utils/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/Cargo.lock -------------------------------------------------------------------------------- /vcx/libvcx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/Cargo.toml -------------------------------------------------------------------------------- /vcx/libvcx/android.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/android.build.sh -------------------------------------------------------------------------------- /vcx/libvcx/android.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/android.test.sh -------------------------------------------------------------------------------- /vcx/libvcx/android_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/android_build.sh -------------------------------------------------------------------------------- /vcx/libvcx/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/build.rs -------------------------------------------------------------------------------- /vcx/libvcx/build_scripts/android/debug-device/debugvcx/src/main.rs.orig: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /vcx/libvcx/build_scripts/libindy.commit.sha1.hash.txt: -------------------------------------------------------------------------------- 1 | v1.6.3 -------------------------------------------------------------------------------- /vcx/libvcx/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/debian/changelog -------------------------------------------------------------------------------- /vcx/libvcx/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /vcx/libvcx/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/debian/control -------------------------------------------------------------------------------- /vcx/libvcx/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/debian/copyright -------------------------------------------------------------------------------- /vcx/libvcx/debian/libvcx.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/debian/libvcx.install -------------------------------------------------------------------------------- /vcx/libvcx/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/debian/postinst -------------------------------------------------------------------------------- /vcx/libvcx/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # 3 | 4 | %: 5 | dh $@ 6 | -------------------------------------------------------------------------------- /vcx/libvcx/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vcx/libvcx/include/vcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/include/vcx.h -------------------------------------------------------------------------------- /vcx/libvcx/install_toolchains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/install_toolchains.sh -------------------------------------------------------------------------------- /vcx/libvcx/rpm/libvcx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/rpm/libvcx.spec -------------------------------------------------------------------------------- /vcx/libvcx/rpm/libvcx.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/rpm/libvcx.spec.in -------------------------------------------------------------------------------- /vcx/libvcx/sample_config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/sample_config/config.json -------------------------------------------------------------------------------- /vcx/libvcx/sample_config/log4rs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/sample_config/log4rs.yml -------------------------------------------------------------------------------- /vcx/libvcx/scripts/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/scripts/postinst -------------------------------------------------------------------------------- /vcx/libvcx/scripts/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/scripts/postrm -------------------------------------------------------------------------------- /vcx/libvcx/src/api/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/connection.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/credential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/credential.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/credential_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/credential_def.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/disclosed_proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/disclosed_proof.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/logger.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/proof.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/return_types_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/return_types_u32.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/schema.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/utils.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/vcx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/vcx.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/api/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/api/wallet.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/connection.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/credential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/credential.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/credential_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/credential_def.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/credential_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/credential_request.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/disclosed_proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/disclosed_proof.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/error/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/error/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/issuer_credential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/issuer_credential.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/lib.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/agent_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/agent_utils.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/create_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/create_key.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/get_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/get_message.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/invite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/invite.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/payload.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/proofs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/proofs/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/thread.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/messages/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/messages/validation.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/object_cache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/object_cache/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/proof.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/schema.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/settings.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/agent_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/agent_info.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/ccallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/ccallback.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/constants.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/cstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/cstring.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/devsetup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/devsetup.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/error.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/file.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/httpclient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/httpclient.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/json.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/cache.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/crypto.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/ledger.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/logger.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/pool.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/signus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/signus.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/libindy/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/libindy/wallet.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/logger.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/openssl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/openssl.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/option_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/option_util.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/plugins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/plugins.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/qualifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/qualifier.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/threadpool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/threadpool.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/timeout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/timeout.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/utils/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/utils/uuid.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/handlers/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/a2a/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/a2a/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/ack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/ack.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/basic_message/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod message; 2 | -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/error.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/forward.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/forward.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/messages/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/messages/status.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/src/v3/mod.rs -------------------------------------------------------------------------------- /vcx/libvcx/src/v3/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod encryption_envelope; -------------------------------------------------------------------------------- /vcx/libvcx/tests/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/tests/logging.rs -------------------------------------------------------------------------------- /vcx/libvcx/tests/utils/demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/libvcx/tests/utils/demo.rs -------------------------------------------------------------------------------- /vcx/libvcx/tests/utils/mod.rs: -------------------------------------------------------------------------------- 1 | #[macro_use] 2 | pub mod demo; 3 | -------------------------------------------------------------------------------- /vcx/samples/android/WrapperTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vcx/samples/android/WrapperTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':vcx-debug' 2 | -------------------------------------------------------------------------------- /vcx/wrappers/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/README.md -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/ConnectMeVcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/ConnectMeVcx.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/ConnectMeVcx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/ConnectMeVcx.m -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/include/libvcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/include/libvcx.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/lib/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/IndySdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/IndySdk.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/IndySdk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/IndySdk.m -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/IndyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/IndyTypes.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/VcxErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/VcxErrors.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/VcxLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/VcxLogger.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/VcxLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/VcxLogger.m -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/utils/VcxTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/utils/VcxTypes.h -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/vcx-demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/vcx-demo/main.m -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/vcx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/vcx/Info.plist -------------------------------------------------------------------------------- /vcx/wrappers/ios/vcx/vcx/vcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/ios/vcx/vcx/vcx.h -------------------------------------------------------------------------------- /vcx/wrappers/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/.gitignore -------------------------------------------------------------------------------- /vcx/wrappers/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/README.md -------------------------------------------------------------------------------- /vcx/wrappers/java/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/android/.gitignore -------------------------------------------------------------------------------- /vcx/wrappers/java/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/android/build.gradle -------------------------------------------------------------------------------- /vcx/wrappers/java/android/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/android/package.json -------------------------------------------------------------------------------- /vcx/wrappers/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/build.gradle -------------------------------------------------------------------------------- /vcx/wrappers/java/ci/buildAar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/ci/buildAar.sh -------------------------------------------------------------------------------- /vcx/wrappers/java/ci/buildJar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/ci/buildJar.sh -------------------------------------------------------------------------------- /vcx/wrappers/java/ci/java.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/ci/java.dockerfile -------------------------------------------------------------------------------- /vcx/wrappers/java/ci/my.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/ci/my.dockerfile -------------------------------------------------------------------------------- /vcx/wrappers/java/ci/publishJar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/ci/publishJar.sh -------------------------------------------------------------------------------- /vcx/wrappers/java/demo-android/AliceDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vcx/wrappers/java/demo-android/AliceDemo/app/src/main/res/raw/genesis_txn.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcx/wrappers/java/demo-android/AliceDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='AliceDemo' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /vcx/wrappers/java/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/gradle.properties -------------------------------------------------------------------------------- /vcx/wrappers/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/gradlew -------------------------------------------------------------------------------- /vcx/wrappers/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/java/gradlew.bat -------------------------------------------------------------------------------- /vcx/wrappers/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'vcx' 2 | -------------------------------------------------------------------------------- /vcx/wrappers/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/.gitignore -------------------------------------------------------------------------------- /vcx/wrappers/node/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/.npmignore -------------------------------------------------------------------------------- /vcx/wrappers/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/README.md -------------------------------------------------------------------------------- /vcx/wrappers/node/ci/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/ci/generate-docs.sh -------------------------------------------------------------------------------- /vcx/wrappers/node/ci/node.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/ci/node.dockerfile -------------------------------------------------------------------------------- /vcx/wrappers/node/ci/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/ci/package.sh -------------------------------------------------------------------------------- /vcx/wrappers/node/ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/ci/test.sh -------------------------------------------------------------------------------- /vcx/wrappers/node/ci/test_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/ci/test_wrapper.sh -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/alice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/alice.js -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/common.js -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/docker.txn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/docker.txn -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/faber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/faber.js -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/logger.js -------------------------------------------------------------------------------- /vcx/wrappers/node/demo/script-comon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/demo/script-comon.js -------------------------------------------------------------------------------- /vcx/wrappers/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/package.json -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/common.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/init.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/logging.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/proof.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/schema.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/utils.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/vcx-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/vcx-base.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/vcx-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/vcx-mock.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/api/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/api/wallet.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/errors.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/index.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/rustlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/rustlib.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/src/vcx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/src/vcx.ts -------------------------------------------------------------------------------- /vcx/wrappers/node/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/test/tsconfig.json -------------------------------------------------------------------------------- /vcx/wrappers/node/test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/test/tslint.json -------------------------------------------------------------------------------- /vcx/wrappers/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/tsconfig.json -------------------------------------------------------------------------------- /vcx/wrappers/node/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/node/tslint.json -------------------------------------------------------------------------------- /vcx/wrappers/python3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/.gitignore -------------------------------------------------------------------------------- /vcx/wrappers/python3/.pytest_cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vcx/wrappers/python3/MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcx/wrappers/python3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/README.md -------------------------------------------------------------------------------- /vcx/wrappers/python3/aries-test-server/README.txt: -------------------------------------------------------------------------------- 1 | Simple HTTP server to run VCX against Aries Test Suite. -------------------------------------------------------------------------------- /vcx/wrappers/python3/ci/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/ci/package.sh -------------------------------------------------------------------------------- /vcx/wrappers/python3/ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/ci/test.sh -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/README.md -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/acme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/acme.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/alice-pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/alice-pg.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/alice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/alice.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/docker.txn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/docker.txn -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/faber-pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/faber-pg.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/demo/faber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/demo/faber.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/generate_docs.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /vcx/wrappers/python3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/setup.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/tests/conftest.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/api/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Api calls for Libvcx 3 | """ -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/api/proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/api/proof.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/api/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/api/schema.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/api/utils.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/api/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/api/wallet.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/cdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/cdll.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/common.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/error.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/logging.py -------------------------------------------------------------------------------- /vcx/wrappers/python3/vcx/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/vcx/wrappers/python3/vcx/state.py -------------------------------------------------------------------------------- /wrappers/Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/Guidelines.md -------------------------------------------------------------------------------- /wrappers/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/.gitignore -------------------------------------------------------------------------------- /wrappers/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/README.md -------------------------------------------------------------------------------- /wrappers/dotnet/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/api/index.html -------------------------------------------------------------------------------- /wrappers/dotnet/docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/api/toc.html -------------------------------------------------------------------------------- /wrappers/dotnet/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/favicon.ico -------------------------------------------------------------------------------- /wrappers/dotnet/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/index.html -------------------------------------------------------------------------------- /wrappers/dotnet/docs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/index.json -------------------------------------------------------------------------------- /wrappers/dotnet/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/logo.svg -------------------------------------------------------------------------------- /wrappers/dotnet/docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/manifest.json -------------------------------------------------------------------------------- /wrappers/dotnet/docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/styles/docfx.css -------------------------------------------------------------------------------- /wrappers/dotnet/docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/styles/docfx.js -------------------------------------------------------------------------------- /wrappers/dotnet/docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/styles/lunr.js -------------------------------------------------------------------------------- /wrappers/dotnet/docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrappers/dotnet/docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/styles/main.js -------------------------------------------------------------------------------- /wrappers/dotnet/docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/toc.html -------------------------------------------------------------------------------- /wrappers/dotnet/docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/docs/xrefmap.yml -------------------------------------------------------------------------------- /wrappers/dotnet/indy-sdk-dotnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/dotnet/indy-sdk-dotnet.sln -------------------------------------------------------------------------------- /wrappers/ios/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /wrappers/ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/ios/Gemfile -------------------------------------------------------------------------------- /wrappers/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/ios/README.md -------------------------------------------------------------------------------- /wrappers/ios/libindy-pod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/ios/libindy-pod/.gitignore -------------------------------------------------------------------------------- /wrappers/ios/libindy-pod/Indy/Indy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/ios/libindy-pod/Indy/Indy.h -------------------------------------------------------------------------------- /wrappers/ios/libindy-pod/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/ios/libindy-pod/Podfile -------------------------------------------------------------------------------- /wrappers/java/.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | /.settings/ 4 | /target/ 5 | /bin/ 6 | 7 | -------------------------------------------------------------------------------- /wrappers/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/java/README.md -------------------------------------------------------------------------------- /wrappers/java/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/java/lib/.gitignore -------------------------------------------------------------------------------- /wrappers/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/java/pom.xml -------------------------------------------------------------------------------- /wrappers/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/.gitignore -------------------------------------------------------------------------------- /wrappers/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/README.md -------------------------------------------------------------------------------- /wrappers/nodejs/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/binding.gyp -------------------------------------------------------------------------------- /wrappers/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/package.json -------------------------------------------------------------------------------- /wrappers/nodejs/src/IndyError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/src/IndyError.js -------------------------------------------------------------------------------- /wrappers/nodejs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/src/index.js -------------------------------------------------------------------------------- /wrappers/nodejs/src/indy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/src/indy.cc -------------------------------------------------------------------------------- /wrappers/nodejs/src/indyBinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/src/indyBinding.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/anoncreds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/anoncreds.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/blob.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/cache.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/crypto.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/did.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/index.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/ledger.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/logger.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/logger2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/logger2.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/mod.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/nonsecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/nonsecrets.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/pairwise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/pairwise.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/payments.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/pool.js -------------------------------------------------------------------------------- /wrappers/nodejs/test/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/nodejs/test/wallet.js -------------------------------------------------------------------------------- /wrappers/python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /wrappers/python/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include version.txt -------------------------------------------------------------------------------- /wrappers/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/README.md -------------------------------------------------------------------------------- /wrappers/python/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/debian/changelog -------------------------------------------------------------------------------- /wrappers/python/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /wrappers/python/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/debian/control -------------------------------------------------------------------------------- /wrappers/python/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/debian/copyright -------------------------------------------------------------------------------- /wrappers/python/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/debian/files -------------------------------------------------------------------------------- /wrappers/python/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/debian/rules -------------------------------------------------------------------------------- /wrappers/python/indy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/__init__.py -------------------------------------------------------------------------------- /wrappers/python/indy/anoncreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/anoncreds.py -------------------------------------------------------------------------------- /wrappers/python/indy/blob_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/blob_storage.py -------------------------------------------------------------------------------- /wrappers/python/indy/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/cache.py -------------------------------------------------------------------------------- /wrappers/python/indy/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/crypto.py -------------------------------------------------------------------------------- /wrappers/python/indy/did.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/did.py -------------------------------------------------------------------------------- /wrappers/python/indy/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/error.py -------------------------------------------------------------------------------- /wrappers/python/indy/ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/ledger.py -------------------------------------------------------------------------------- /wrappers/python/indy/libindy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/libindy.py -------------------------------------------------------------------------------- /wrappers/python/indy/non_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/non_secrets.py -------------------------------------------------------------------------------- /wrappers/python/indy/pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/pairwise.py -------------------------------------------------------------------------------- /wrappers/python/indy/payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/payment.py -------------------------------------------------------------------------------- /wrappers/python/indy/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/pool.py -------------------------------------------------------------------------------- /wrappers/python/indy/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/indy/wallet.py -------------------------------------------------------------------------------- /wrappers/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/setup.py -------------------------------------------------------------------------------- /wrappers/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrappers/python/tests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrappers/python/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/tests/conftest.py -------------------------------------------------------------------------------- /wrappers/python/tests/did/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrappers/python/tests/indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/python/tests/indy.py -------------------------------------------------------------------------------- /wrappers/python/tests/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrappers/python/version.txt: -------------------------------------------------------------------------------- 1 | 1.16.0 2 | -------------------------------------------------------------------------------- /wrappers/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/.gitignore -------------------------------------------------------------------------------- /wrappers/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/Cargo.toml -------------------------------------------------------------------------------- /wrappers/rust/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/LICENSE-APACHE -------------------------------------------------------------------------------- /wrappers/rust/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/LICENSE-MIT -------------------------------------------------------------------------------- /wrappers/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/README.md -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/Cargo.toml -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/build.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/cache.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/crypto.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/did.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/ledger.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/lib.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/logger.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/metrics.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/pairwise.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/payments.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/pool.rs -------------------------------------------------------------------------------- /wrappers/rust/indy-sys/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/indy-sys/src/wallet.rs -------------------------------------------------------------------------------- /wrappers/rust/scripts/gen_ffi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/scripts/gen_ffi.pl -------------------------------------------------------------------------------- /wrappers/rust/scripts/gen_from_ffi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/scripts/gen_from_ffi.pl -------------------------------------------------------------------------------- /wrappers/rust/src/anoncreds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/anoncreds.rs -------------------------------------------------------------------------------- /wrappers/rust/src/blob_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/blob_storage.rs -------------------------------------------------------------------------------- /wrappers/rust/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/cache.rs -------------------------------------------------------------------------------- /wrappers/rust/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/crypto.rs -------------------------------------------------------------------------------- /wrappers/rust/src/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/did.rs -------------------------------------------------------------------------------- /wrappers/rust/src/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/ledger.rs -------------------------------------------------------------------------------- /wrappers/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/lib.rs -------------------------------------------------------------------------------- /wrappers/rust/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/logger.rs -------------------------------------------------------------------------------- /wrappers/rust/src/macros/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/macros/mod.rs -------------------------------------------------------------------------------- /wrappers/rust/src/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/metrics.rs -------------------------------------------------------------------------------- /wrappers/rust/src/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/pairwise.rs -------------------------------------------------------------------------------- /wrappers/rust/src/payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/payments.rs -------------------------------------------------------------------------------- /wrappers/rust/src/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/pool.rs -------------------------------------------------------------------------------- /wrappers/rust/src/utils/callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/utils/callbacks.rs -------------------------------------------------------------------------------- /wrappers/rust/src/utils/ctypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/utils/ctypes.rs -------------------------------------------------------------------------------- /wrappers/rust/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/utils/mod.rs -------------------------------------------------------------------------------- /wrappers/rust/src/utils/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/utils/sequence.rs -------------------------------------------------------------------------------- /wrappers/rust/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/src/wallet.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/config.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/crypto.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/did.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/ledger.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/metrics.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/pairwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/pairwise.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/payment.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/pool.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/b58.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/b58.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/constants.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/did.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/did.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/file.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/mod.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/pool.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/rand.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/setup.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/utils/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/utils/wallet.rs -------------------------------------------------------------------------------- /wrappers/rust/tests/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-indy/indy-sdk/HEAD/wrappers/rust/tests/wallet.rs --------------------------------------------------------------------------------