├── .commitlint.config.js ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── post-install.sh ├── .dockerignore ├── .gitattributes ├── .github ├── LTS-README.md ├── actions │ ├── is-release │ │ └── action.yml │ ├── run-indy-tails-server │ │ └── action.yml │ ├── run-integration-tests │ │ └── action.yml │ ├── run-postgres-tests │ │ └── action.yml │ ├── run-unit-tests │ │ └── action.yml │ └── run-von-network │ │ └── action.yml ├── dependabot.yml ├── lts-versions.txt └── workflows │ ├── bdd-integration-tests.yml │ ├── bdd-interop-tests.yml │ ├── codeql.yml │ ├── format.yml │ ├── nightly.yml │ ├── pip-audit.yml │ ├── pr-tests.yml │ ├── publish-docs.yml │ ├── publish.yml │ ├── pythonpublish.yml │ ├── scenario-integration-tests.yml │ ├── scorecard.yml │ ├── snyk-lts.yml │ ├── snyk.yml │ ├── sonar-merge-main.yml │ ├── sonar-pr.yml │ └── tag-recreate-lts.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .tgitconfig ├── .vscode-sample ├── alice.yml ├── author.yml ├── endorser.yml ├── faber.yml ├── launch.json ├── multitenant-admin.yml └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── LTS-Strategy.md ├── MAINTAINERS.md ├── MANIFEST.in ├── Managing-ACA-Py-Doc-Site.md ├── NOTICES ├── PUBLISHING.md ├── README.md ├── SECURITY.md ├── aca-py_architecture.png ├── acapy_agent ├── __init__.py ├── __main__.py ├── admin │ ├── __init__.py │ ├── base_server.py │ ├── decorators │ │ └── auth.py │ ├── error.py │ ├── request_context.py │ ├── routes.py │ ├── server.py │ └── tests │ │ ├── __init__.py │ │ ├── test_admin_server.py │ │ ├── test_auth.py │ │ └── test_request_context.py ├── anoncreds │ ├── __init__.py │ ├── base.py │ ├── constants.py │ ├── default │ │ ├── __init__.py │ │ ├── did_web │ │ │ ├── __init__.py │ │ │ ├── registry.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_registry.py │ │ └── legacy_indy │ │ │ ├── __init__.py │ │ │ ├── author.py │ │ │ ├── recover.py │ │ │ ├── registry.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_recover.py │ │ │ └── test_registry.py │ ├── error_messages.py │ ├── events.py │ ├── holder.py │ ├── issuer.py │ ├── models │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── credential_definition.py │ │ ├── credential_offer.py │ │ ├── credential_proposal.py │ │ ├── credential_request.py │ │ ├── issuer_cred_rev_record.py │ │ ├── non_rev_interval.py │ │ ├── predicate.py │ │ ├── presentation_request.py │ │ ├── proof.py │ │ ├── requested_credentials.py │ │ ├── revocation.py │ │ ├── schema.py │ │ ├── schema_info.py │ │ └── utils.py │ ├── registry.py │ ├── revocation │ │ ├── __init__.py │ │ ├── auto_recovery │ │ │ ├── __init__.py │ │ │ ├── event_recovery.py │ │ │ ├── event_storage.py │ │ │ ├── retry_utils.py │ │ │ └── revocation_recovery_middleware.py │ │ ├── manager.py │ │ ├── recover.py │ │ ├── revocation.py │ │ ├── revocation_setup.py │ │ ├── routes.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_event_recovery.py │ │ │ ├── test_event_storage.py │ │ │ ├── test_issuer_cred_rev_record.py │ │ │ ├── test_manager.py │ │ │ ├── test_revocation.py │ │ │ ├── test_revocation_recovery_middleware.py │ │ │ ├── test_routes.py │ │ │ ├── test_setup.py │ │ │ └── test_wait_for_revocation_setup.py │ ├── routes │ │ ├── __init__.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ ├── testing.py │ │ │ └── utils.py │ │ ├── cred_defs │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_routes.py │ │ ├── revocation │ │ │ ├── __init__.py │ │ │ ├── credentials │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── routes.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_routes.py │ │ │ ├── lists │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── routes.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_routes.py │ │ │ ├── registry │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── routes.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_routes.py │ │ │ └── tails │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── routes.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_routes.py │ │ └── schemas │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ ├── tests │ │ ├── __init__.py │ │ ├── mock_objects.py │ │ ├── test_holder.py │ │ ├── test_issuer.py │ │ ├── test_routes.py │ │ └── test_verifier.py │ ├── util.py │ └── verifier.py ├── askar │ ├── __init__.py │ ├── didcomm │ │ ├── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_v2.py │ │ ├── v1.py │ │ └── v2.py │ ├── profile.py │ ├── profile_anon.py │ ├── store.py │ └── tests │ │ ├── __init__.py │ │ ├── test_profile.py │ │ └── test_store.py ├── cache │ ├── __init__.py │ ├── base.py │ ├── in_memory.py │ └── tests │ │ ├── __init__.py │ │ └── test_in_memory_cache.py ├── commands │ ├── __init__.py │ ├── default_version_upgrade_config.yml │ ├── help.py │ ├── provision.py │ ├── start.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_help.py │ │ ├── test_init.py │ │ ├── test_provision.py │ │ ├── test_start.py │ │ └── test_upgrade.py │ └── upgrade.py ├── config │ ├── __init__.py │ ├── argparse.py │ ├── banner.py │ ├── base.py │ ├── base_context.py │ ├── default_context.py │ ├── error.py │ ├── injection_context.py │ ├── injector.py │ ├── ledger.py │ ├── logging │ │ ├── __init__.py │ │ ├── base.py │ │ ├── configurator.py │ │ ├── default_logging_config.ini │ │ ├── default_multitenant_logging_config.ini │ │ ├── default_multitenant_logging_config.yml │ │ ├── filters.py │ │ └── timed_rotating_file_multi_process_handler.py │ ├── plugin_settings.py │ ├── provider.py │ ├── settings.py │ ├── tests │ │ ├── __init__.py │ │ ├── test-acapy-upgrade-config.yaml │ │ ├── test-general-args.yaml │ │ ├── test-ledger-args-no-genesis.yaml │ │ ├── test-ledger-args-no-write.yaml │ │ ├── test-ledger-args.yaml │ │ ├── test-transport-args.yaml │ │ ├── test_argparse.py │ │ ├── test_default_context.py │ │ ├── test_disclose_features_list.yaml │ │ ├── test_injection_context.py │ │ ├── test_injector.py │ │ ├── test_ledger.py │ │ ├── test_logging.py │ │ ├── test_plugins_config.yaml │ │ ├── test_provider.py │ │ ├── test_settings.py │ │ └── test_wallet.py │ ├── util.py │ └── wallet.py ├── connections │ ├── __init__.py │ ├── base_manager.py │ ├── models │ │ ├── __init__.py │ │ ├── conn_record.py │ │ ├── connection_target.py │ │ ├── diddoc │ │ │ ├── __init__.py │ │ │ ├── diddoc.py │ │ │ ├── publickey.py │ │ │ ├── service.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_diddoc.py │ │ │ └── util.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_conn_record.py │ │ │ └── test_connection_target.py │ ├── routes.py │ └── tests │ │ ├── __init__.py │ │ ├── test_base_manager.py │ │ └── test_routes.py ├── core │ ├── __init__.py │ ├── conductor.py │ ├── dispatcher.py │ ├── error.py │ ├── event_bus.py │ ├── goal_code_registry.py │ ├── oob_processor.py │ ├── plugin_registry.py │ ├── profile.py │ ├── protocol_registry.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_conductor.py │ │ ├── test_dispatcher.py │ │ ├── test_error.py │ │ ├── test_event_bus.py │ │ ├── test_goal_code_registry.py │ │ ├── test_oob_processor.py │ │ ├── test_plugin_registry.py │ │ ├── test_profile.py │ │ └── test_protocol_registry.py │ └── util.py ├── database_manager │ ├── __init__.py │ ├── category_registry.py │ ├── databases │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ └── backend_registration.py │ │ ├── errors.py │ │ ├── postgresql_normalized │ │ │ ├── backend.py │ │ │ ├── config.py │ │ │ ├── connection_pool.py │ │ │ ├── database.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── base_handler.py │ │ │ │ ├── custom │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection_metadata_custom_handler.py │ │ │ │ │ ├── cred_ex_v20_custom_handler.py │ │ │ │ │ └── pres_ex_v20_custom_handler.py │ │ │ │ ├── generic_handler.py │ │ │ │ └── normalized_handler.py │ │ │ ├── schema_context.py │ │ │ ├── session.py │ │ │ └── tests │ │ │ │ ├── test_postgresql_generic_with_wql.py │ │ │ │ └── test_postgresql_normalize_with_wql.py │ │ └── sqlite_normalized │ │ │ ├── __init__.py │ │ │ ├── backend.py │ │ │ ├── config.py │ │ │ ├── connection_pool.py │ │ │ ├── database.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── base_handler.py │ │ │ ├── custom │ │ │ │ ├── __init__.py │ │ │ │ ├── connection_metadata_custom_handler.py │ │ │ │ ├── cred_ex_v20_custom_handler.py │ │ │ │ └── pres_ex_v20_custom_handler.py │ │ │ ├── generic_handler.py │ │ │ └── normalized_handler.py │ │ │ ├── session.py │ │ │ └── tests │ │ │ ├── .gitkeep │ │ │ ├── test_sqlite_generic.py │ │ │ ├── test_sqlite_generic_with_wql.py │ │ │ ├── test_sqlite_minimal.py │ │ │ ├── test_sqlite_normalized.py │ │ │ └── test_sqlite_normalized_with_wql.py │ ├── db_errors.py │ ├── db_types.py │ ├── dbstore.py │ ├── error.py │ ├── interfaces.py │ ├── key.py │ ├── migrations │ │ ├── release_1_0_to_1_1.py │ │ └── sample_acapy_cred_ex_v20_v1_to_v2.py │ ├── releases │ │ ├── release_0.py │ │ ├── release_0_1.py │ │ └── release_0_2.py │ ├── schemas │ │ ├── anoncreds_cred_ex_v20_v0_1.py │ │ ├── connection_invitation_v0_1.py │ │ ├── connection_metadata_v0_1.py │ │ ├── connection_request_v0_1.py │ │ ├── connection_v0_1.py │ │ ├── cred_def_sent_v0_1.py │ │ ├── cred_ex_v20_v0_1.py │ │ ├── credential_def_v0_1.py │ │ ├── credential_v0_1.py │ │ ├── did_doc_v0_1.py │ │ ├── did_key_v0_1.py │ │ ├── did_v0_1.py │ │ ├── issuer_cred_rev_v0_1.py │ │ ├── oob_record_v0_1.py │ │ ├── pres_ex_v20_v0_1.py │ │ ├── revocation_list_v0_1.py │ │ ├── revocation_reg_def_v0_1.py │ │ ├── schema_sent_v0_1.py │ │ ├── schema_v0_1.py │ │ └── transaction_v0_1.py │ ├── tests │ │ ├── dbstore │ │ │ ├── conftest.py │ │ │ ├── test_database_performance.py │ │ │ ├── test_db_store_credex_insert.py │ │ │ ├── test_db_store_generic.py │ │ │ ├── test_db_store_generic_normalized.py │ │ │ ├── test_db_store_postgresql_generic.py │ │ │ ├── test_db_store_postgresql_normalized.py │ │ │ ├── test_db_store_postgresql_normalized_provision.py │ │ │ ├── test_db_store_scan_generic.py │ │ │ ├── test_db_store_scan_generic_postgresql.py │ │ │ ├── test_db_store_scan_normalized.py │ │ │ └── test_db_store_scan_normalized_postgresql.py │ │ ├── test_backend_registration_unit.py │ │ ├── test_category_registry_unit.py │ │ ├── test_dbstore_async_scan_unit.py │ │ ├── test_dbstore_backend_errors_unit.py │ │ ├── test_dbstore_context_exceptions_unit.py │ │ ├── test_dbstore_context_unit.py │ │ ├── test_dbstore_initialize_and_open_guards_unit.py │ │ ├── test_dbstore_profiles_rekey_unit.py │ │ ├── test_dbstore_scan_wrappers_unit.py │ │ ├── test_dbstore_sessions_guards_unit.py │ │ ├── test_dbstore_success_backend_unit.py │ │ ├── test_key_unit.py │ │ ├── test_sqlite_config_migrations_happy_and_error_unit.py │ │ ├── test_sqlite_config_migrations_unit.py │ │ ├── test_sqlite_config_open_edge_cases_unit.py │ │ ├── test_sqlite_config_open_mismatch_enforcement_unit.py │ │ ├── test_sqlite_config_open_mismatch_unit.py │ │ ├── test_sqlite_config_schema_branches_unit.py │ │ ├── test_sqlite_config_unit.py │ │ ├── test_sqlite_session_enter_exit_translate_unit.py │ │ ├── test_sqlite_session_paths_unit.py │ │ └── test_sqlite_session_translate_error_unit.py │ ├── wql_normalized │ │ ├── __init__.py │ │ ├── encoders │ │ │ ├── __init__.py │ │ │ ├── encoder_factory.py │ │ │ ├── postgres_encoder.py │ │ │ └── sqlite_encoder.py │ │ ├── query.py │ │ ├── tags.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_postgres_TagsqlEncoder_All_key_value_A.py │ │ │ ├── test_postgres_TagsqlEncoder_All_key_value_B.py │ │ │ ├── test_postgres_TagsqlEncoder_All_normalized_A.py │ │ │ ├── test_postgres_TagsqlEncoder_All_normalized_B.py │ │ │ ├── test_postgres_TagsqlEncoder_compare_conj.py │ │ │ ├── test_postgres_TagsqlEncoder_compare_conj_normalized.py │ │ │ ├── test_postgres_TagsqlEncoder_negate_conj.py │ │ │ ├── test_postgres_TagsqlEncoder_or_conj.py │ │ │ ├── test_postgres_encoder_unit.py │ │ │ ├── test_sqlite_TagsqlEncoder_All_key_value.py │ │ │ ├── test_sqlite_TagsqlEncoder_All_normalized.py │ │ │ ├── test_sqlite_TagsqlEncoder_compare_conj.py │ │ │ ├── test_sqlite_TagsqlEncoder_compare_conj_normalized.py │ │ │ ├── test_sqlite_TagsqlEncoder_negate_conj.py │ │ │ ├── test_sqlite_TagsqlEncoder_or_conj.py │ │ │ └── test_string_to_tagquery.py │ └── wql_nosql │ │ ├── __init__.py │ │ ├── encoders │ │ ├── __init__.py │ │ ├── encoder_factory.py │ │ ├── mongo_encoder.py │ │ └── sqlite_encoder.py │ │ ├── query.py │ │ ├── tags.py │ │ ├── test_string_to_tagquery.py │ │ └── tests │ │ ├── __init__.py │ │ ├── test_mongo_TagsqlEncoder_ALL_SETUP.txt │ │ ├── test_mongo_TagsqlEncoder_ALL_tests.py │ │ ├── test_mongo_TagsqlEncoder_compare_conj.py │ │ ├── test_mongo_TagsqlEncoder_in_exit_conj.py │ │ ├── test_mongo_TagsqlEncoder_negate_conj.py │ │ ├── test_mongo_TagsqlEncoder_nested_not_conj.py │ │ ├── test_mongo_TagsqlEncoder_or_conj.py │ │ ├── test_mongo_encoder_basic.py │ │ ├── test_mongo_tagquery_conversion.py │ │ ├── test_mongo_wql_integration.py │ │ ├── test_sqlite_TagsqlEncoder_compare_conj.py │ │ ├── test_sqlite_TagsqlEncoder_in_exit_conj.py │ │ ├── test_sqlite_TagsqlEncoder_negate_conj.py │ │ ├── test_sqlite_TagsqlEncoder_nested_not_conj.py │ │ ├── test_sqlite_TagsqlEncoder_or_conj.py │ │ └── test_tags_after_removed_plaintext.py ├── did │ ├── __init__.py │ ├── did_key.py │ ├── indy │ │ ├── indy_manager.py │ │ ├── routes.py │ │ └── tests │ │ │ ├── test_indy_manager.py │ │ │ └── test_routes.py │ └── tests │ │ ├── __init__.py │ │ ├── test_did_key_bls12381g1.py │ │ ├── test_did_key_bls12381g1g2.py │ │ ├── test_did_key_bls12381g2.py │ │ ├── test_did_key_ed25519.py │ │ ├── test_did_key_p256.py │ │ ├── test_did_key_x25519.py │ │ └── test_dids.py ├── didcomm_v2 │ ├── __init__.py │ ├── adapters.py │ └── tests │ │ ├── __init__.py │ │ └── test_adapters.py ├── holder │ ├── __init__.py │ ├── routes.py │ └── tests │ │ ├── __init__.py │ │ └── test_routes.py ├── indy │ ├── __init__.py │ ├── constants.py │ ├── credx │ │ ├── __init__.py │ │ ├── holder.py │ │ ├── holder_kanon.py │ │ ├── issuer.py │ │ ├── issuer_kanon.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_cred_issuance.py │ │ │ ├── test_get_link_secret.py │ │ │ ├── test_holder_kanon_unit.py │ │ │ └── test_issuer_kanon_unit.py │ │ └── verifier.py │ ├── holder.py │ ├── issuer.py │ ├── models │ │ ├── __init__.py │ │ ├── cred.py │ │ ├── cred_abstract.py │ │ ├── cred_def.py │ │ ├── cred_precis.py │ │ ├── cred_request.py │ │ ├── non_rev_interval.py │ │ ├── predicate.py │ │ ├── pres_preview.py │ │ ├── proof.py │ │ ├── proof_request.py │ │ ├── requested_creds.py │ │ ├── revocation.py │ │ ├── schema.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_cred.py │ │ │ ├── test_cred_precis.py │ │ │ ├── test_non_rev_interval.py │ │ │ ├── test_pred.py │ │ │ ├── test_pres_preview.py │ │ │ ├── test_proof.py │ │ │ └── test_proof_request.py │ │ └── xform.py │ ├── tests │ │ ├── __init__.py │ │ └── test_verifier.py │ ├── util.py │ └── verifier.py ├── kanon │ ├── __init__.py │ ├── didcomm │ │ ├── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_v2.py │ │ ├── v1.py │ │ └── v2.py │ ├── profile_anon_kanon.py │ ├── store_kanon.py │ └── tests │ │ ├── __init__.py │ │ ├── test_didcomm_v1_unit.py │ │ ├── test_didcomm_v2_unit.py │ │ ├── test_profile_anon_kanon_providers_unit.py │ │ ├── test_profile_anon_kanon_unit.py │ │ ├── test_profile_integration.py │ │ ├── test_profile_manager_unit.py │ │ └── test_store_kanon_unit.py ├── ledger │ ├── __init__.py │ ├── base.py │ ├── endpoint_type.py │ ├── error.py │ ├── indy_vdr.py │ ├── merkel_validation │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── domain_txn_handler.py │ │ ├── hasher.py │ │ ├── merkel_verifier.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_data.py │ │ │ ├── test_domain_txn_handler.py │ │ │ ├── test_trie.py │ │ │ └── test_utils.py │ │ ├── trie.py │ │ └── utils.py │ ├── multiple_ledger │ │ ├── __init__.py │ │ ├── base_manager.py │ │ ├── indy_vdr_manager.py │ │ ├── ledger_config_schema.py │ │ ├── ledger_requests_executor.py │ │ ├── manager_provider.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_indy_ledger_requests.py │ │ │ ├── test_indy_vdr_manager.py │ │ │ └── test_manager_provider.py │ ├── routes.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_endpoint_type.py │ │ ├── test_indy_vdr.py │ │ ├── test_role.py │ │ └── test_routes.py │ └── util.py ├── messaging │ ├── __init__.py │ ├── agent_message.py │ ├── base_handler.py │ ├── base_message.py │ ├── credential_definitions │ │ ├── __init__.py │ │ ├── routes.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ │ └── util.py │ ├── decorators │ │ ├── __init__.py │ │ ├── attach_decorator.py │ │ ├── base.py │ │ ├── default.py │ │ ├── localization_decorator.py │ │ ├── please_ack_decorator.py │ │ ├── service_decorator.py │ │ ├── signature_decorator.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_attach_decorator.py │ │ │ ├── test_base.py │ │ │ ├── test_decorator_set.py │ │ │ ├── test_localization_decorator.py │ │ │ ├── test_please_ack_decorator.py │ │ │ ├── test_signature_decorator.py │ │ │ ├── test_thread_decorator.py │ │ │ ├── test_timing_decorator.py │ │ │ ├── test_trace_decorator.py │ │ │ └── test_transport_decorator.py │ │ ├── thread_decorator.py │ │ ├── timing_decorator.py │ │ ├── trace_decorator.py │ │ └── transport_decorator.py │ ├── error.py │ ├── jsonld │ │ ├── __init__.py │ │ ├── create_verify_data.py │ │ ├── credential.py │ │ ├── error.py │ │ ├── routes.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── document_loader.py │ │ │ ├── test_credential.py │ │ │ └── test_routes.py │ ├── message_type.py │ ├── models │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base_record.py │ │ ├── openapi.py │ │ ├── paginated_query.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_base_record.py │ │ │ └── test_paginated_query.py │ ├── request_context.py │ ├── responder.py │ ├── schemas │ │ ├── __init__.py │ │ ├── routes.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ │ └── util.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_agent_message.py │ │ ├── test_util.py │ │ └── test_valid.py │ ├── util.py │ ├── v2_agent_message.py │ └── valid.py ├── multitenant │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── routes.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ ├── base.py │ ├── cache.py │ ├── error.py │ ├── manager.py │ ├── manager_provider.py │ ├── route_manager.py │ ├── single_wallet_askar_manager.py │ ├── single_wallet_kanon_manager.py │ └── tests │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_cache.py │ │ ├── test_manager.py │ │ ├── test_manager_provider.py │ │ ├── test_route_manager.py │ │ ├── test_single_wallet_askar_manager.py │ │ └── test_single_wallet_kanon_manager_unit.py ├── protocols │ ├── README.md │ ├── __init__.py │ ├── actionmenu │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── base_service.py │ │ │ ├── controller.py │ │ │ ├── driver_service.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── menu_handler.py │ │ │ ├── menu_request_handler.py │ │ │ ├── perform_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_menu_handler.py │ │ │ │ ├── test_menu_request_handler.py │ │ │ │ └── test_perform_handler.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── menu.py │ │ │ ├── menu_request.py │ │ │ ├── perform.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_menu.py │ │ │ │ ├── test_menu_request.py │ │ │ │ └── test_perform.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── menu_form.py │ │ │ ├── menu_form_param.py │ │ │ └── menu_option.py │ │ │ ├── routes.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_controller.py │ │ │ ├── test_routes.py │ │ │ ├── test_service.py │ │ │ └── test_util.py │ │ │ └── util.py │ ├── basicmessage │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── basicmessage_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_basicmessage_handler.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── basicmessage.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic_message.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ ├── coordinate_mediation │ │ ├── __init__.py │ │ ├── definition.py │ │ ├── mediation_invite_store.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── keylist_handler.py │ │ │ ├── keylist_query_handler.py │ │ │ ├── keylist_update_handler.py │ │ │ ├── keylist_update_response_handler.py │ │ │ ├── mediation_deny_handler.py │ │ │ ├── mediation_grant_handler.py │ │ │ ├── mediation_request_handler.py │ │ │ ├── problem_report_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_keylist_handler.py │ │ │ │ ├── test_keylist_query_handler.py │ │ │ │ ├── test_keylist_update_handler.py │ │ │ │ ├── test_keylist_update_response_handler.py │ │ │ │ ├── test_mediation_deny_handler.py │ │ │ │ ├── test_mediation_grant_handler.py │ │ │ │ ├── test_mediation_request_handler.py │ │ │ │ └── test_problem_report_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── inner │ │ │ │ ├── __init__.py │ │ │ │ ├── keylist_key.py │ │ │ │ ├── keylist_query_paginate.py │ │ │ │ ├── keylist_update_rule.py │ │ │ │ └── keylist_updated.py │ │ │ ├── keylist.py │ │ │ ├── keylist_query.py │ │ │ ├── keylist_update.py │ │ │ ├── keylist_update_response.py │ │ │ ├── mediate_deny.py │ │ │ ├── mediate_grant.py │ │ │ ├── mediate_request.py │ │ │ ├── problem_report.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_keylist.py │ │ │ │ ├── test_keylist_query.py │ │ │ │ ├── test_keylist_update.py │ │ │ │ ├── test_keylist_update_response.py │ │ │ │ ├── test_mediate_deny.py │ │ │ │ ├── test_mediate_grant.py │ │ │ │ ├── test_mediate_request.py │ │ │ │ └── test_problem_report.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── mediation_record.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_mediation_record.py │ │ │ ├── normalization.py │ │ │ ├── route_manager.py │ │ │ ├── route_manager_provider.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_mediation_invite_store.py │ │ │ ├── test_mediation_manager.py │ │ │ ├── test_multiuse_invitation.py │ │ │ ├── test_route_manager.py │ │ │ └── test_routes.py │ ├── did_rotate │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── ack_handler.py │ │ │ ├── hangup_handler.py │ │ │ ├── problem_report_handler.py │ │ │ ├── rotate_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ack_handler.py │ │ │ │ ├── test_hangup_handler.py │ │ │ │ ├── test_problem_report_handler.py │ │ │ │ └── test_rotate_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── ack.py │ │ │ ├── hangup.py │ │ │ ├── problem_report.py │ │ │ ├── rotate.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ack.py │ │ │ │ ├── test_hangup.py │ │ │ │ ├── test_problem_report.py │ │ │ │ └── test_rotate.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── rotate_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ ├── didcomm_prefix.py │ ├── didexchange │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── complete_handler.py │ │ │ ├── invitation_handler.py │ │ │ ├── problem_report_handler.py │ │ │ ├── request_handler.py │ │ │ ├── response_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_complete_handler.py │ │ │ │ ├── test_invitation_handler.py │ │ │ │ ├── test_problem_report_handler.py │ │ │ │ ├── test_request_handler.py │ │ │ │ └── test_response_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── complete.py │ │ │ ├── problem_report.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_complete.py │ │ │ │ ├── test_problem_report.py │ │ │ │ ├── test_request.py │ │ │ │ └── test_response.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ ├── discovery │ │ ├── __init__.py │ │ ├── definition.py │ │ ├── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── disclose_handler.py │ │ │ │ ├── query_handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_disclose_handler.py │ │ │ │ │ └── test_query_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ │ ├── __init__.py │ │ │ │ ├── disclose.py │ │ │ │ ├── query.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_disclose.py │ │ │ │ │ └── test_query.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── discovery_record.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_manager.py │ │ │ │ └── test_routes.py │ │ └── v2_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── disclosures_handler.py │ │ │ ├── queries_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_disclosures_handler.py │ │ │ │ └── test_queries_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── disclosures.py │ │ │ ├── queries.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_disclosures.py │ │ │ │ └── test_queries.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── discovery_record.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ ├── endorse_transaction │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── endorsed_transaction_response_handler.py │ │ │ ├── refused_transaction_response_handler.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_endorsed_transaction_response_handler.py │ │ │ │ ├── test_refused_transaction_response_handler.py │ │ │ │ ├── test_transaction_acknowledgement_handler.py │ │ │ │ ├── test_transaction_cancel_handler.py │ │ │ │ ├── test_transaction_job_to_send_handler.py │ │ │ │ ├── test_transaction_request_handler.py │ │ │ │ └── test_transaction_resend_handler.py │ │ │ ├── transaction_acknowledgement_handler.py │ │ │ ├── transaction_cancel_handler.py │ │ │ ├── transaction_job_to_send_handler.py │ │ │ ├── transaction_request_handler.py │ │ │ └── transaction_resend_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── cancel_transaction.py │ │ │ ├── endorsed_transaction_response.py │ │ │ ├── messages_attach.py │ │ │ ├── refused_transaction_response.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cancel_transaction.py │ │ │ │ ├── test_endorsed_transaction_response.py │ │ │ │ ├── test_messages_attach.py │ │ │ │ ├── test_refused_transaction_response.py │ │ │ │ ├── test_transaction_acknowledgement.py │ │ │ │ ├── test_transaction_job_to_send.py │ │ │ │ ├── test_transaction_request.py │ │ │ │ └── test_transaction_resend.py │ │ │ ├── transaction_acknowledgement.py │ │ │ ├── transaction_job_to_send.py │ │ │ ├── transaction_request.py │ │ │ └── transaction_resend.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── transaction_record.py │ │ │ ├── routes.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ │ │ ├── transaction_jobs.py │ │ │ └── util.py │ ├── introduction │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v0_1 │ │ │ ├── __init__.py │ │ │ ├── base_service.py │ │ │ ├── demo_service.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── forward_invitation_handler.py │ │ │ ├── invitation_handler.py │ │ │ ├── invitation_request_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_forward_invitation_handler.py │ │ │ │ ├── test_invitation_handler.py │ │ │ │ └── test_invitation_request_handler.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── forward_invitation.py │ │ │ ├── invitation.py │ │ │ ├── invitation_request.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_forward_invitation.py │ │ │ │ ├── test_invitation.py │ │ │ │ └── test_invitation_request.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_routes.py │ │ │ └── test_service.py │ ├── issue_credential │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v2_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── formats │ │ │ ├── __init__.py │ │ │ ├── anoncreds │ │ │ │ ├── __init__.py │ │ │ │ ├── handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_handler.py │ │ │ ├── handler.py │ │ │ ├── indy │ │ │ │ ├── __init__.py │ │ │ │ ├── handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_handler.py │ │ │ ├── ld_proof │ │ │ │ ├── __init__.py │ │ │ │ ├── handler.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cred_detail.py │ │ │ │ │ ├── cred_detail_options.py │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_cred_detail.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fixtures.py │ │ │ │ │ └── test_handler.py │ │ │ └── vc_di │ │ │ │ ├── __init__.py │ │ │ │ ├── handler.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── cred.py │ │ │ │ ├── cred_offer.py │ │ │ │ └── cred_request.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_handler.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── cred_ack_handler.py │ │ │ ├── cred_issue_handler.py │ │ │ ├── cred_offer_handler.py │ │ │ ├── cred_problem_report_handler.py │ │ │ ├── cred_proposal_handler.py │ │ │ ├── cred_request_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cred_ack_handler.py │ │ │ │ ├── test_cred_issue_handler.py │ │ │ │ ├── test_cred_offer_handler.py │ │ │ │ ├── test_cred_problem_report_handler.py │ │ │ │ ├── test_cred_proposal_handler.py │ │ │ │ └── test_cred_request_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── cred_ack.py │ │ │ ├── cred_ex_record_webhook.py │ │ │ ├── cred_format.py │ │ │ ├── cred_issue.py │ │ │ ├── cred_offer.py │ │ │ ├── cred_problem_report.py │ │ │ ├── cred_proposal.py │ │ │ ├── cred_request.py │ │ │ ├── inner │ │ │ │ ├── __init__.py │ │ │ │ ├── cred_preview.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_cred_preview.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cred_ack.py │ │ │ │ ├── test_cred_format.py │ │ │ │ ├── test_cred_issue.py │ │ │ │ ├── test_cred_offer.py │ │ │ │ ├── test_cred_problem_report.py │ │ │ │ ├── test_cred_proposal.py │ │ │ │ └── test_cred_request.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── cred_ex_record.py │ │ │ ├── detail │ │ │ │ ├── __init__.py │ │ │ │ ├── anoncreds.py │ │ │ │ ├── indy.py │ │ │ │ ├── ld_proof.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_indy.py │ │ │ │ │ └── test_ld_proof.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_cred_ex_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ ├── notification │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── ack_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_ack_handler.py │ │ │ ├── message_types.py │ │ │ └── messages │ │ │ ├── __init__.py │ │ │ └── ack.py │ ├── out_of_band │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── problem_report_handler.py │ │ │ ├── reuse_accept_handler.py │ │ │ ├── reuse_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_problem_report_handler.py │ │ │ │ ├── test_reuse_accept_handler.py │ │ │ │ └── test_reuse_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── invitation.py │ │ │ ├── problem_report.py │ │ │ ├── reuse.py │ │ │ ├── reuse_accept.py │ │ │ ├── service.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_invitation.py │ │ │ │ ├── test_problem_report.py │ │ │ │ ├── test_reuse.py │ │ │ │ └── test_reuse_accept.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── invitation.py │ │ │ ├── oob_record.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_invitation.py │ │ │ │ └── test_out_of_band.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_invite_creator.py │ │ │ ├── test_manager.py │ │ │ └── test_routes.py │ ├── present_proof │ │ ├── __init__.py │ │ ├── anoncreds │ │ │ ├── __init__.py │ │ │ └── pres_exch_handler.py │ │ ├── definition.py │ │ ├── dif │ │ │ ├── __init__.py │ │ │ ├── pres_exch.py │ │ │ ├── pres_exch_handler.py │ │ │ ├── pres_proposal_schema.py │ │ │ ├── pres_request_schema.py │ │ │ ├── pres_schema.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_pres_exch.py │ │ │ │ ├── test_pres_exch_handler.py │ │ │ │ └── test_pres_request.py │ │ ├── indy │ │ │ ├── __init__.py │ │ │ └── pres_exch_handler.py │ │ ├── v1_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── presentation_ack_handler.py │ │ │ │ ├── presentation_handler.py │ │ │ │ ├── presentation_problem_report_handler.py │ │ │ │ ├── presentation_proposal_handler.py │ │ │ │ ├── presentation_request_handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_presentation_ack_handler.py │ │ │ │ │ ├── test_presentation_handler.py │ │ │ │ │ ├── test_presentation_problem_report_handler.py │ │ │ │ │ ├── test_presentation_proposal_handler.py │ │ │ │ │ └── test_presentation_request_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ │ ├── __init__.py │ │ │ │ ├── presentation.py │ │ │ │ ├── presentation_ack.py │ │ │ │ ├── presentation_problem_report.py │ │ │ │ ├── presentation_proposal.py │ │ │ │ ├── presentation_request.py │ │ │ │ ├── presentation_webhook.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_presentation.py │ │ │ │ │ ├── test_presentation_ack.py │ │ │ │ │ ├── test_presentation_problem_report.py │ │ │ │ │ ├── test_presentation_proposal.py │ │ │ │ │ └── test_presentation_request.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── presentation_exchange.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_manager.py │ │ │ │ └── test_routes.py │ │ └── v2_0 │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── formats │ │ │ ├── __init__.py │ │ │ ├── anoncreds │ │ │ │ ├── __init__.py │ │ │ │ └── handler.py │ │ │ ├── dif │ │ │ │ ├── __init__.py │ │ │ │ ├── handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_handler.py │ │ │ ├── handler.py │ │ │ └── indy │ │ │ │ ├── __init__.py │ │ │ │ └── handler.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── pres_ack_handler.py │ │ │ ├── pres_handler.py │ │ │ ├── pres_problem_report_handler.py │ │ │ ├── pres_proposal_handler.py │ │ │ ├── pres_request_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_pres_ack_handler.py │ │ │ │ ├── test_pres_handler.py │ │ │ │ ├── test_pres_problem_report_handler.py │ │ │ │ ├── test_pres_proposal_handler.py │ │ │ │ └── test_pres_request_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── pres.py │ │ │ ├── pres_ack.py │ │ │ ├── pres_format.py │ │ │ ├── pres_problem_report.py │ │ │ ├── pres_proposal.py │ │ │ ├── pres_request.py │ │ │ ├── pres_webhook.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_pres.py │ │ │ │ ├── test_pres_ack.py │ │ │ │ ├── test_pres_format.py │ │ │ │ ├── test_pres_problem_report.py │ │ │ │ ├── test_pres_proposal.py │ │ │ │ └── test_pres_request.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── pres_exchange.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ ├── test_manager_anoncreds.py │ │ │ ├── test_routes.py │ │ │ └── test_routes_anoncreds.py │ ├── problem_report │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handler.py │ │ │ ├── message.py │ │ │ ├── message_types.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_handler.py │ │ │ └── test_message.py │ ├── revocation_notification │ │ ├── __init__.py │ │ ├── definition.py │ │ ├── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── revoke_handler.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_revoke_handler.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ │ ├── __init__.py │ │ │ │ ├── revoke.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_revoke.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── rev_notification_record.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_rev_notification_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_routes.py │ │ └── v2_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── revoke_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_revoke_handler.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── revoke.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_revoke.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── rev_notification_record.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_rev_notification_record.py │ │ │ ├── routes.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_routes.py │ ├── routing │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── forward_handler.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_forward_handler.py │ │ │ ├── manager.py │ │ │ ├── message_types.py │ │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── forward.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_forward.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── route_record.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_route_record.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_routing_manager.py │ ├── tests │ │ ├── __init__.py │ │ └── test_didcomm_prefix.py │ └── trustping │ │ ├── __init__.py │ │ ├── definition.py │ │ └── v1_0 │ │ ├── __init__.py │ │ ├── handlers │ │ ├── __init__.py │ │ ├── ping_handler.py │ │ ├── ping_response_handler.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_ping_handler.py │ │ │ └── test_ping_response_handler.py │ │ ├── message_types.py │ │ ├── messages │ │ ├── __init__.py │ │ ├── ping.py │ │ ├── ping_response.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_trust_ping.py │ │ │ └── test_trust_ping_reponse.py │ │ ├── routes.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_routes.py ├── resolver │ ├── __init__.py │ ├── base.py │ ├── default │ │ ├── __init__.py │ │ ├── indy.py │ │ ├── jwk.py │ │ ├── key.py │ │ ├── legacy_peer.py │ │ ├── peer1.py │ │ ├── peer2.py │ │ ├── peer3.py │ │ ├── peer4.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_indy.py │ │ │ ├── test_jwk.py │ │ │ ├── test_key.py │ │ │ ├── test_legacy_peer.py │ │ │ ├── test_peer2.py │ │ │ ├── test_peer3.py │ │ │ ├── test_peer4.py │ │ │ ├── test_universal.py │ │ │ ├── test_web.py │ │ │ └── test_webvh.py │ │ ├── universal.py │ │ ├── web.py │ │ └── webvh.py │ ├── did_resolver.py │ ├── routes.py │ └── tests │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_did_resolver.py │ │ └── test_routes.py ├── revocation │ ├── __init__.py │ ├── error.py │ ├── indy.py │ ├── manager.py │ ├── models │ │ ├── __init__.py │ │ ├── indy.py │ │ ├── issuer_cred_rev_record.py │ │ ├── issuer_rev_reg_record.py │ │ ├── revocation_registry.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_indy.py │ │ │ ├── test_issuer_cred_rev_record.py │ │ │ ├── test_issuer_rev_reg_record.py │ │ │ └── test_revocation_registry.py │ ├── recover.py │ ├── routes.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_indy.py │ │ ├── test_manager.py │ │ └── test_routes.py │ └── util.py ├── revocation_anoncreds │ └── __init__.py ├── settings │ ├── __init__.py │ ├── routes.py │ └── tests │ │ ├── __init__.py │ │ └── test_routes.py ├── storage │ ├── __init__.py │ ├── askar.py │ ├── base.py │ ├── error.py │ ├── kanon_storage.py │ ├── record.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_askar_storage.py │ │ ├── test_kanon_storage_basic.py │ │ └── test_storage_record.py │ ├── type.py │ └── vc_holder │ │ ├── __init__.py │ │ ├── askar.py │ │ ├── base.py │ │ ├── kanon.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_askar_vc_holder.py │ │ ├── test_kanon_vc_holder_integration.py │ │ ├── test_kanon_vc_holder_unit.py │ │ └── test_vc_record.py │ │ ├── vc_record.py │ │ └── xform.py ├── tails │ ├── __init__.py │ ├── anoncreds_tails_server.py │ ├── base.py │ ├── error.py │ ├── indy_tails_server.py │ └── tests │ │ ├── __init__.py │ │ └── test_indy.py ├── tests │ ├── __init__.py │ ├── mock.py │ └── test_main.py ├── transport │ ├── __init__.py │ ├── error.py │ ├── inbound │ │ ├── __init__.py │ │ ├── base.py │ │ ├── delivery_queue.py │ │ ├── http.py │ │ ├── manager.py │ │ ├── message.py │ │ ├── receipt.py │ │ ├── session.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_delivery_queue.py │ │ │ ├── test_http_transport.py │ │ │ ├── test_manager.py │ │ │ ├── test_message.py │ │ │ ├── test_session.py │ │ │ └── test_ws_transport.py │ │ └── ws.py │ ├── outbound │ │ ├── __init__.py │ │ ├── base.py │ │ ├── http.py │ │ ├── manager.py │ │ ├── message.py │ │ ├── status.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_http_transport.py │ │ │ ├── test_manager.py │ │ │ └── test_ws_transport.py │ │ └── ws.py │ ├── pack_format.py │ ├── queue │ │ ├── __init__.py │ │ ├── base.py │ │ ├── basic.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_basic_queue.py │ ├── stats.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_pack_format.py │ │ ├── test_stats.py │ │ └── test_wire_format.py │ ├── v2_pack_format.py │ └── wire_format.py ├── utils │ ├── __init__.py │ ├── classloader.py │ ├── dependencies.py │ ├── endorsement_setup.py │ ├── env.py │ ├── extract_validation_error.py │ ├── general.py │ ├── http.py │ ├── jwe.py │ ├── multi_ledger.py │ ├── multiformats │ │ ├── __init__.py │ │ ├── multibase.py │ │ └── multicodec.py │ ├── outofband.py │ ├── plugin_installer.py │ ├── profiles.py │ ├── repeat.py │ ├── server.py │ ├── stats.py │ ├── task_queue.py │ ├── testing.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_classloader.py │ │ ├── test_endorsement_setup.py │ │ ├── test_extract_validation_error.py │ │ ├── test_http.py │ │ ├── test_jwe.py │ │ ├── test_multiformats.py │ │ ├── test_outofband.py │ │ ├── test_plugin_installer.py │ │ ├── test_repeat.py │ │ ├── test_stats.py │ │ ├── test_task_queue.py │ │ ├── test_tracing.py │ │ └── test_wait_for_active_registry.py │ ├── tracing.py │ └── wait_for_active_registry.py ├── vc │ ├── __init__.py │ ├── data_integrity │ │ ├── __init__.py │ │ ├── cryptosuites │ │ │ ├── __init__.py │ │ │ └── eddsa_jcs_2022.py │ │ ├── errors.py │ │ ├── manager.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── options.py │ │ │ ├── proof.py │ │ │ └── verification_response.py │ │ ├── routes.py │ │ └── tests │ │ │ ├── test_cryptosuites.py │ │ │ └── test_manager.py │ ├── ld_proofs │ │ ├── __init__.py │ │ ├── check.py │ │ ├── constants.py │ │ ├── crypto │ │ │ ├── __init__.py │ │ │ ├── key_pair.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_wallet_key_pair.py │ │ │ └── wallet_key_pair.py │ │ ├── document_downloader.py │ │ ├── document_loader.py │ │ ├── error.py │ │ ├── ld_proofs.py │ │ ├── proof_set.py │ │ ├── purposes │ │ │ ├── __init__.py │ │ │ ├── assertion_proof_purpose.py │ │ │ ├── authentication_proof_purpose.py │ │ │ ├── controller_proof_purpose.py │ │ │ ├── credential_issuance_purpose.py │ │ │ ├── proof_purpose.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_authentication_proof_purpose.py │ │ │ │ ├── test_controller_proof_purpose.py │ │ │ │ ├── test_credential_issuance_purpose.py │ │ │ │ └── test_proof_purpose.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── bbs-v1-context.jsonld │ │ │ ├── credentials_context.jsonld │ │ │ ├── credentials_v2_context.jsonld │ │ │ ├── did_documents_context.jsonld │ │ │ ├── dif-presentation-exchange-submission-v1.jsonld │ │ │ ├── ed25519-2020-context.jsonld │ │ │ ├── security-v1-context.jsonld │ │ │ ├── security-v2-context.jsonld │ │ │ └── status_list_context.jsonld │ │ ├── suites │ │ │ ├── __init__.py │ │ │ ├── bbs_bls_signature_2020.py │ │ │ ├── bbs_bls_signature_2020_base.py │ │ │ ├── bbs_bls_signature_proof_2020.py │ │ │ ├── ecdsa_secp256r1_signature_2019.py │ │ │ ├── ed25519_signature_2018.py │ │ │ ├── ed25519_signature_2020.py │ │ │ ├── jws_linked_data_signature.py │ │ │ ├── linked_data_proof.py │ │ │ ├── linked_data_signature.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_bbs_bls_signature_2020.py │ │ │ │ ├── test_bbs_bls_signature_proof_2020.py │ │ │ │ ├── test_ecdsa_secp256r1_signature_2019.py │ │ │ │ ├── test_ed25519_signature_2018.py │ │ │ │ └── test_ed25519_signature_2020.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_check.py │ │ │ ├── test_doc.py │ │ │ ├── test_document_downloader.py │ │ │ └── test_ld_proofs.py │ │ └── validation_result.py │ ├── routes.py │ ├── tests │ │ ├── __init__.py │ │ ├── contexts │ │ │ ├── __init__.py │ │ │ ├── bbs_v1.py │ │ │ ├── citizenship_v1.py │ │ │ ├── credentials_v1.py │ │ │ ├── credentials_v2.py │ │ │ ├── did_v1.py │ │ │ ├── dif_presentation_submission_v1.py │ │ │ ├── ed25519_2020_v1.py │ │ │ ├── examples_v1.py │ │ │ ├── multikey_v1.py │ │ │ ├── odrl.py │ │ │ ├── schema_org.py │ │ │ ├── security_v1.py │ │ │ ├── security_v2.py │ │ │ ├── security_v3_unstable.py │ │ │ └── vaccination_v1.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── bbs_nested_vc_full_reveal_document_mattr.py │ │ │ ├── bbs_nested_vc_mattr.py │ │ │ ├── bbs_nested_vc_reveal_document_mattr.py │ │ │ ├── bbs_partial_proof_nested_vc_mattr.py │ │ │ ├── bbs_partial_proof_vc_mattr.py │ │ │ ├── bbs_proof_nested_vc_mattr.py │ │ │ ├── bbs_proof_vc_mattr.py │ │ │ ├── bbs_signed_nested_vc_mattr.py │ │ │ ├── bbs_signed_vc_mattr.py │ │ │ ├── bbs_vc_mattr.py │ │ │ ├── bbs_vc_reveal_document_mattr.py │ │ │ ├── test_ld_document.py │ │ │ ├── test_ld_document_bad_partial_proof_bbs.py │ │ │ ├── test_ld_document_bad_signed_bbs.py │ │ │ ├── test_ld_document_bad_signed_ed25519.py │ │ │ ├── test_ld_document_bad_signed_ed25519_2020.py │ │ │ ├── test_ld_document_bad_signed_secp256r1_2019.py │ │ │ ├── test_ld_document_partial_proof_bbs.py │ │ │ ├── test_ld_document_proof_bbs.py │ │ │ ├── test_ld_document_reveal.py │ │ │ ├── test_ld_document_reveal_all.py │ │ │ ├── test_ld_document_signed_bbs.py │ │ │ ├── test_ld_document_signed_ed25519.py │ │ │ ├── test_ld_document_signed_ed25519_2020.py │ │ │ ├── test_ld_document_signed_secp256r1_2019.py │ │ │ ├── test_vc_document.py │ │ │ ├── test_vc_document_did_key_ed25519.py │ │ │ ├── test_vc_document_nested.py │ │ │ ├── test_vc_document_nested_partial_proof_bbs.py │ │ │ ├── test_vc_document_nested_proof_bbs.py │ │ │ ├── test_vc_document_nested_reveal.py │ │ │ ├── test_vc_document_nested_signed_bbs.py │ │ │ ├── test_vc_document_partial_proof_bbs.py │ │ │ ├── test_vc_document_reveal.py │ │ │ ├── test_vc_document_signed_bbs.py │ │ │ ├── test_vc_document_signed_did_key_ed25519.py │ │ │ ├── test_vc_document_signed_ed25519.py │ │ │ ├── test_vc_document_signed_ed25519_2020.py │ │ │ └── test_vc_document_signed_secp256r1_2019.py │ │ ├── dids │ │ │ ├── __init__.py │ │ │ ├── did_example_489398593.py │ │ │ ├── did_sov_QqEfJxe752NCmWqR5TssZ5.py │ │ │ ├── did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.py │ │ │ ├── did_zDnaehWviigWQQD7bqF3btFquwA5w8DX2sQwkVxnAyJ7oxdjq.py │ │ │ └── did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.py │ │ ├── document_loader.py │ │ ├── test_bbs_mattr_interop.py │ │ └── test_routes.py │ ├── vc_di │ │ ├── __init__.py │ │ ├── manager.py │ │ ├── prove.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_manager.py │ │ │ └── test_prove.py │ │ └── verify.py │ └── vc_ld │ │ ├── __init__.py │ │ ├── external_suite.py │ │ ├── issue.py │ │ ├── manager.py │ │ ├── models │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── linked_data_proof.py │ │ ├── options.py │ │ ├── presentation.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_credential.py │ │ └── web_schemas.py │ │ ├── prove.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── test_credential.py │ │ ├── test_credential_v2.py │ │ ├── test_manager.py │ │ ├── test_validation_result.py │ │ ├── test_vc_ld.py │ │ └── test_vc_v2.py │ │ ├── validation_result.py │ │ └── verify.py ├── version.py └── wallet │ ├── __init__.py │ ├── anoncreds_upgrade.py │ ├── askar.py │ ├── base.py │ ├── bbs.py │ ├── crypto.py │ ├── default_verification_key_strategy.py │ ├── did_info.py │ ├── did_method.py │ ├── did_parameters_validation.py │ ├── did_posture.py │ ├── error.py │ ├── jwt.py │ ├── kanon_wallet.py │ ├── key_type.py │ ├── keys │ ├── __init__.py │ ├── manager.py │ ├── routes.py │ └── tests │ │ └── test_key_operations.py │ ├── models │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_wallet_record.py │ └── wallet_record.py │ ├── routes.py │ ├── sd_jwt.py │ ├── singletons.py │ ├── tests │ ├── __init__.py │ ├── test_anoncreds_upgrade.py │ ├── test_askar.py │ ├── test_bbs.py │ ├── test_crypto.py │ ├── test_default_verification_key_strategy.py │ ├── test_did_method.py │ ├── test_did_parameters_validation.py │ ├── test_did_posture.py │ ├── test_jwt.py │ ├── test_kanon_wallet_did_public.py │ ├── test_kanon_wallet_errors_and_endpoint.py │ ├── test_kanon_wallet_integration.py │ ├── test_kanon_wallet_keys.py │ ├── test_key_type.py │ ├── test_routes.py │ ├── test_sd_jwt.py │ └── test_util.py │ └── util.py ├── charts └── acapy │ └── README.md ├── conftest.py ├── demo ├── .gitignore ├── README.md ├── alice-local.sh ├── askar-indy-args.yml ├── bdd_support │ ├── agent_backchannel_client.py │ └── agent_test_utils.py ├── behave.ini ├── collateral │ ├── 1-Faber-Invitation-1.png │ ├── 1-Faber-Invitation-2.png │ ├── 1-Faber-Invitation-3.png │ ├── 1-Faber-Invitation-4.png │ ├── 2-Alice-Invitation-1.png │ ├── 2-Alice-Invitation-2.png │ ├── 2-Alice-Invitation-3.png │ ├── 2-Alice-Invitation-4.png │ ├── 2-Alice-Invitation-5.png │ ├── 3-Faber-Connection-1.png │ ├── 3-Faber-Connection-2.png │ ├── 3-Faber-Connection-3.png │ ├── 3-Faber-Connection-4.png │ ├── 4-Alice-Connection-1.png │ ├── 4-Alice-Connection-2.png │ ├── 5-Faber-Connection-1.png │ ├── 6-Alice-Basic-Msg.png │ ├── 7-Faber-Basic-Msg.png │ ├── 8-Alice-Basic-Msg.png │ ├── Alice-Agent-Local.png │ ├── Alice-Agent.png │ ├── C-1-Faber-DID-Public.png │ ├── C-2-Faber-Ledger-Search-0.png │ ├── C-2-Faber-Ledger-Search-1.png │ ├── C-2-Faber-Ledger-Search-2.png │ ├── C-2-Faber-Ledger-Search-3.png │ ├── C-2-Faber-Ledger-Search-4.png │ ├── C-3-Faber-Info-1.png │ ├── C-3-Faber-Info-2.png │ ├── C-3-Faber-Info-3.png │ ├── C-3-Faber-Info-4.png │ ├── C-3-Faber-Info-5.png │ ├── C-4-Faber-Credential-Offer-1.png │ ├── C-4-Faber-Credential-Offer-2.png │ ├── C-5-Alice-Credential-Offer-1.png │ ├── C-6-Faber-Credential-Request.png │ ├── C-7-Alice-Store-Credential-1.png │ ├── C-7-Alice-Store-Credential-2.png │ ├── C-7-Alice-Store-Credential-3.png │ ├── C-7-Alice-Store-Credential-4.png │ ├── C-8-Faber-Credential-Ack-0.png │ ├── C-8-Faber-Credential-Ack-1.png │ ├── C-8-Faber-Credential-Ack-2.png │ ├── Faber-Agent-Local.png │ ├── Faber-Agent.png │ ├── P-1-Faber-Proof-Request-1.png │ ├── P-1-Faber-Proof-Request-2.png │ ├── P-2-Alice-Proof-Request-1.png │ ├── P-2-Alice-Proof-Request-2.png │ ├── P-3-Faber-Proof-1.png │ ├── P-3-Faber-Proof-2.png │ ├── P-3-Faber-Proof-3.png │ ├── S-0-invitation-1.png │ ├── S-0-invitation-2.png │ ├── S-1-connect-1.jpg │ ├── S-1-connect-2.jpg │ ├── S-1-connect-3.jpg │ ├── S-2-connect-1.png │ ├── S-2-connect-2.png │ ├── S-2-connect-3.png │ ├── S-2-connect-4.png │ ├── S-3-credential-0.png │ ├── S-3-credential-1.jpg │ ├── S-3-credential-2.jpg │ ├── S-3-credential-3.jpg │ ├── S-4-proof-0.png │ ├── S-4-proof-1.jpg │ ├── S-4-proof-2.jpg │ ├── S-4-proof-3.jpg │ ├── S-4-proof-4.png │ ├── conn-id.png │ ├── cred-def-id.png │ ├── ios1-install-app.jpg │ ├── ios2-create-agent.jpg │ ├── ios3-enable-security.jpg │ ├── ios4-enable-notifications.jpg │ ├── ios5-select-network.jpg │ ├── issuer-did.png │ ├── multitenancy-admin-api.png │ ├── revocation-1-github-repo.png │ ├── revocation-2-ledger.png │ ├── revocation-3-console.png │ └── schema-name-version.png ├── demo-args.yaml ├── docker-agent │ ├── Dockerfile.acapy │ ├── README.md │ ├── docker-compose.yml │ └── ngrok-wait.sh ├── docker-test │ ├── README.md │ ├── db │ │ ├── Dockerfile │ │ └── init-postgres-role.sh │ ├── docker-compose-agent.yml │ └── docker-compose-wallet.yml ├── docker │ ├── docker-compose.yml │ └── ledgers.yaml ├── elk-stack │ ├── .env.sample │ ├── LICENSE │ ├── README.md │ ├── docker-compose.yml │ ├── elasticsearch │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── config │ │ │ └── elasticsearch.yml │ ├── extensions │ │ ├── README.md │ │ ├── curator │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── curator.yml │ │ │ │ └── delete_log_files_curator.yml │ │ │ └── curator-compose.yml │ │ ├── enterprise-search │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── enterprise-search.yml │ │ │ └── enterprise-search-compose.yml │ │ ├── filebeat │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── filebeat.yml │ │ │ └── filebeat-compose.yml │ │ ├── fleet │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── agent-apmserver-compose.yml │ │ │ └── fleet-compose.yml │ │ ├── heartbeat │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── heartbeat.yml │ │ │ └── heartbeat-compose.yml │ │ ├── logspout │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── logspout-compose.yml │ │ │ └── modules.go │ │ └── metricbeat │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── config │ │ │ └── metricbeat.yml │ │ │ └── metricbeat-compose.yml │ ├── kibana │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── config │ │ │ └── kibana.yml │ ├── logstash │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── config │ │ │ └── logstash.yml │ │ └── pipeline │ │ │ └── logstash.conf │ └── setup │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── lib.sh │ │ └── roles │ │ ├── filebeat_writer.json │ │ ├── heartbeat_writer.json │ │ ├── logstash_writer.json │ │ └── metricbeat_writer.json ├── faber-local.sh ├── features │ ├── 0160-connection.feature │ ├── 0453-issue-credential.feature │ ├── 0454-present-proof.feature │ ├── 0586-sign-transaction.feature │ ├── data │ │ ├── cred_data_schema_anoncreds-testing.json │ │ ├── cred_data_schema_biological_indicators.json │ │ ├── cred_data_schema_driverslicense.json │ │ ├── cred_data_schema_driverslicense_revoc.json │ │ ├── cred_data_schema_driverslicense_v2.json │ │ ├── cred_data_schema_health_consent.json │ │ ├── cred_data_schema_health_consent_revoc.json │ │ ├── cred_data_schema_health_id.json │ │ ├── expires_time.json │ │ ├── presentation_DL_address.json │ │ ├── presentation_DL_address_v2.json │ │ ├── presentation_DL_age_over_19.json │ │ ├── presentation_DL_age_over_19_v2.json │ │ ├── presentation_DL_age_over_19_v2_with_health_id.json │ │ ├── presentation_DL_age_over_19_v2_with_health_id_no_revoc.json │ │ ├── presentation_DL_age_over_19_v2_with_health_id_r2.json │ │ ├── presentation_DL_incorrect_address.json │ │ ├── presentation_DL_revoc_address.json │ │ ├── presentation_DL_revoc_address_w_ts.json │ │ ├── presentation_Health_ID_Num.json │ │ ├── presentation_biological_indicator_a.json │ │ ├── presentation_health_consent.json │ │ ├── presentation_health_consent_revoc_expiry.json │ │ ├── proof_request_AC_age_over_40.json │ │ ├── proof_request_AC_age_over_40_schema.json │ │ ├── proof_request_DL_address.json │ │ ├── proof_request_DL_address_v2.json │ │ ├── proof_request_DL_age_over_19.json │ │ ├── proof_request_DL_age_over_19_v2.json │ │ ├── proof_request_DL_age_over_19_v2_with_health_id.json │ │ ├── proof_request_DL_age_over_19_v2_with_health_id_no_revoc.json │ │ ├── proof_request_DL_age_over_19_v2_with_health_id_r2.json │ │ ├── proof_request_DL_revoc_address.json │ │ ├── proof_request_Health_ID_Num.json │ │ ├── proof_request_biological_indicator_a.json │ │ ├── proof_request_biological_indicator_a_2.0.json │ │ ├── proof_request_health_consent.json │ │ ├── proof_request_health_consent_revoc_expiry.json │ │ ├── proposal_DL_address.json │ │ ├── proposal_DL_age_over_19.json │ │ ├── proposal_Health_ID_Num.json │ │ ├── schema_anoncreds-testing.json │ │ ├── schema_biological_indicators.json │ │ ├── schema_driverslicense.json │ │ ├── schema_driverslicense_revoc.json │ │ ├── schema_driverslicense_v2.json │ │ ├── schema_health_consent.json │ │ ├── schema_health_consent_revoc.json │ │ └── schema_health_id.json │ ├── environment.py │ ├── revocation-api.feature │ ├── steps │ │ ├── 0160-connection.py │ │ ├── 0453-issue-credential.py │ │ ├── 0454-present-proof.py │ │ ├── 0586-sign-transaction.py │ │ ├── revocation-api.py │ │ ├── taa-txn-author-agreement.py │ │ └── upgrade.py │ ├── taa-txn-author-acceptance.feature │ └── upgrade.feature ├── local-genesis.txt ├── local-indy-args.yaml ├── multi-demo │ ├── Dockerfile.acapy │ ├── README.md │ ├── docker-compose.yml │ ├── max_conns.sql │ └── ngrok-wait.sh ├── multi_ledger_config.yml ├── multi_ledger_config_bdd.yml ├── ngrok-wait.sh ├── playground │ ├── .env.sample │ ├── Dockerfile.acapy │ ├── README.md │ ├── configs │ │ ├── multitenant-auto-accept.yml │ │ └── singletenant-auto-accept.yml │ ├── docker-compose.yml │ ├── examples │ │ ├── Dockerfile.test.runner │ │ ├── docker-compose.yml │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_mediator_ping_agents.py │ │ │ └── test_ping_agents.py │ ├── max_conns.sql │ ├── ngrok-acme-multi.yml │ ├── ngrok-faber-alice.yml │ └── start.sh ├── postgres-indy-args.yml ├── postman │ ├── collections │ │ └── vc-api.json │ ├── environment.json │ └── vc-api.collection.json ├── requirements.behave.txt ├── requirements.txt ├── run_bdd ├── run_demo └── runners │ ├── __init__.py │ ├── acme.py │ ├── agent_container.py │ ├── alice.py │ ├── faber.py │ ├── performance.py │ └── support │ ├── __init__.py │ ├── agent.py │ └── utils.py ├── docker ├── Dockerfile ├── Dockerfile.bdd ├── Dockerfile.demo ├── Dockerfile.fixpermissions ├── Dockerfile.run ├── Dockerfile.test └── manage ├── docs ├── Makefile ├── README.md ├── UpdateRTD.md ├── assets │ ├── README.md │ ├── adminApi.png │ ├── adminApiAuthentication.png │ ├── aries-favicon.png │ ├── deploymentModel-agent.png │ ├── deploymentModel-agent.puml │ ├── deploymentModel-controller.png │ ├── deploymentModel-controller.puml │ ├── deploymentModel-full.png │ ├── deploymentModel-full.puml │ ├── endorse-cred-def.png │ ├── endorse-cred-def.puml │ ├── endorse-public-did.png │ ├── endorse-public-did.puml │ ├── endorser-design.png │ ├── endorser-design.puml │ ├── genPlantuml │ ├── inbound-messaging.png │ ├── inbound-messaging.puml │ ├── mediation-message-flow.png │ ├── mediation-message-flow.puml │ └── multitenancyDiagram.png ├── conf.py ├── demo │ ├── ACA-Py-Workshop.md │ ├── AcmeDemoWorkshop.md │ ├── AliceGetsAPhone.md │ ├── AliceWantsAJsonCredential.md │ ├── Endorser.md │ ├── OpenAPIDemo.md │ ├── PostmanDemo.md │ ├── README.md │ ├── ReusingAConnection.md │ └── collateral │ │ ├── 1-Faber-Invitation-1.png │ │ ├── 1-Faber-Invitation-2.png │ │ ├── 1-Faber-Invitation-3.png │ │ ├── 1-Faber-Invitation-4.png │ │ ├── 2-Alice-Invitation-1.png │ │ ├── 2-Alice-Invitation-2.png │ │ ├── 2-Alice-Invitation-3.png │ │ ├── 2-Alice-Invitation-4.png │ │ ├── 2-Alice-Invitation-5.png │ │ ├── 3-Faber-Connection-1.png │ │ ├── 3-Faber-Connection-2.png │ │ ├── 3-Faber-Connection-3.png │ │ ├── 3-Faber-Connection-4.png │ │ ├── 4-Alice-Connection-1.png │ │ ├── 4-Alice-Connection-2.png │ │ ├── 5-Faber-Connection-1.png │ │ ├── 6-Alice-Basic-Msg.png │ │ ├── 7-Faber-Basic-Msg.png │ │ ├── 8-Alice-Basic-Msg.png │ │ ├── Alice-Agent-Local.png │ │ ├── Alice-Agent.png │ │ ├── C-1-Faber-DID-Public.png │ │ ├── C-2-Faber-Ledger-Search-0.png │ │ ├── C-2-Faber-Ledger-Search-1.png │ │ ├── C-2-Faber-Ledger-Search-2.png │ │ ├── C-2-Faber-Ledger-Search-3.png │ │ ├── C-2-Faber-Ledger-Search-4.png │ │ ├── C-3-Faber-Info-1.png │ │ ├── C-3-Faber-Info-2.png │ │ ├── C-3-Faber-Info-3.png │ │ ├── C-3-Faber-Info-4.png │ │ ├── C-3-Faber-Info-5.png │ │ ├── C-4-Faber-Credential-Offer-1.png │ │ ├── C-4-Faber-Credential-Offer-2.png │ │ ├── C-5-Alice-Credential-Offer-1.png │ │ ├── C-6-Faber-Credential-Request.png │ │ ├── C-7-Alice-Store-Credential-1.png │ │ ├── C-7-Alice-Store-Credential-2.png │ │ ├── C-7-Alice-Store-Credential-3.png │ │ ├── C-7-Alice-Store-Credential-4.png │ │ ├── C-8-Faber-Credential-Ack-0.png │ │ ├── C-8-Faber-Credential-Ack-1.png │ │ ├── C-8-Faber-Credential-Ack-2.png │ │ ├── Faber-Agent-Local.png │ │ ├── Faber-Agent.png │ │ ├── P-1-Faber-Proof-Request-1.png │ │ ├── P-1-Faber-Proof-Request-2.png │ │ ├── P-2-Alice-Proof-Request-1.png │ │ ├── P-2-Alice-Proof-Request-2.png │ │ ├── P-3-Faber-Proof-1.png │ │ ├── P-3-Faber-Proof-2.png │ │ ├── P-3-Faber-Proof-3.png │ │ ├── S-0-invitation-1.png │ │ ├── S-0-invitation-2.png │ │ ├── S-1-connect-1.jpg │ │ ├── S-1-connect-2.jpg │ │ ├── S-1-connect-3.jpg │ │ ├── S-2-connect-1.png │ │ ├── S-2-connect-2.png │ │ ├── S-2-connect-3.png │ │ ├── S-2-connect-4.png │ │ ├── S-3-credential-0.png │ │ ├── S-3-credential-1.jpg │ │ ├── S-3-credential-2.jpg │ │ ├── S-3-credential-3.jpg │ │ ├── S-4-proof-0.png │ │ ├── S-4-proof-1.jpg │ │ ├── S-4-proof-2.jpg │ │ ├── S-4-proof-3.jpg │ │ ├── S-4-proof-4.png │ │ ├── conn-id.png │ │ ├── cred-def-id.png │ │ ├── ios1-install-app.jpg │ │ ├── ios2-create-agent.jpg │ │ ├── ios3-enable-security.jpg │ │ ├── ios4-enable-notifications.jpg │ │ ├── ios5-select-network.jpg │ │ ├── issuer-did.png │ │ ├── multitenancy-admin-api.png │ │ ├── revocation-1-github-repo.png │ │ ├── revocation-2-ledger.png │ │ ├── revocation-3-console.png │ │ └── schema-name-version.png ├── deploying │ ├── AnonCredsControllerMigration.md │ ├── AnonCredsWalletType.md │ ├── BBSSignatures.md │ ├── ContainerImagesAndGithubActions.md │ ├── Databases.md │ ├── IndySDKtoAskarMigration.md │ ├── Poetry.md │ ├── RedisPlugins.md │ ├── UpgradingACA-Py.md │ └── deploymentModel.md ├── design │ ├── AnonCredsW3CCompatibility.md │ ├── DIDManagement.md │ ├── UpgradeViaApi.md │ └── anoncreds-w3c-verification-flow.png ├── features │ ├── AdminAPI.md │ ├── AnonCredsMethods.md │ ├── AnonCredsProofValidation.md │ ├── AnonCredsRevocationAutoRecovery.md │ ├── DIDMethods.md │ ├── DIDResolution.md │ ├── DevReadMe.md │ ├── Endorser.md │ ├── JsonLdCredentials.md │ ├── KanonStorage.md │ ├── Mediation.md │ ├── Multicredentials.md │ ├── Multiledger.md │ ├── Multitenancy.md │ ├── PlugIns.md │ ├── QualifiedDIDs.md │ ├── ReuseConnection.md │ ├── SelectiveDisclosureJWTs.md │ ├── SupportedRFCs.md │ ├── UsingOpenAPI.md │ ├── W3cCredentials.md │ └── devcontainer.md ├── generated │ ├── acapy_agent.admin.rst │ ├── acapy_agent.anoncreds.default.did_web.rst │ ├── acapy_agent.anoncreds.default.legacy_indy.rst │ ├── acapy_agent.anoncreds.default.rst │ ├── acapy_agent.anoncreds.models.rst │ ├── acapy_agent.anoncreds.revocation.rst │ ├── acapy_agent.anoncreds.routes.common.rst │ ├── acapy_agent.anoncreds.routes.cred_defs.rst │ ├── acapy_agent.anoncreds.routes.revocation.credentials.rst │ ├── acapy_agent.anoncreds.routes.revocation.lists.rst │ ├── acapy_agent.anoncreds.routes.revocation.registry.rst │ ├── acapy_agent.anoncreds.routes.revocation.rst │ ├── acapy_agent.anoncreds.routes.revocation.tails.rst │ ├── acapy_agent.anoncreds.routes.rst │ ├── acapy_agent.anoncreds.routes.schemas.rst │ ├── acapy_agent.anoncreds.rst │ ├── acapy_agent.askar.didcomm.rst │ ├── acapy_agent.askar.rst │ ├── acapy_agent.cache.rst │ ├── acapy_agent.commands.rst │ ├── acapy_agent.config.logging.rst │ ├── acapy_agent.config.rst │ ├── acapy_agent.connections.models.diddoc.rst │ ├── acapy_agent.connections.models.rst │ ├── acapy_agent.connections.rst │ ├── acapy_agent.core.rst │ ├── acapy_agent.database_manager.databases.backends.rst │ ├── acapy_agent.database_manager.databases.rst │ ├── acapy_agent.database_manager.databases.sqlite_normalized.handlers.custom.rst │ ├── acapy_agent.database_manager.databases.sqlite_normalized.handlers.rst │ ├── acapy_agent.database_manager.databases.sqlite_normalized.rst │ ├── acapy_agent.database_manager.rst │ ├── acapy_agent.database_manager.wql_normalized.encoders.rst │ ├── acapy_agent.database_manager.wql_normalized.rst │ ├── acapy_agent.database_manager.wql_nosql.encoders.rst │ ├── acapy_agent.database_manager.wql_nosql.rst │ ├── acapy_agent.did.rst │ ├── acapy_agent.didcomm_v2.rst │ ├── acapy_agent.holder.rst │ ├── acapy_agent.indy.credx.rst │ ├── acapy_agent.indy.models.rst │ ├── acapy_agent.indy.rst │ ├── acapy_agent.kanon.didcomm.rst │ ├── acapy_agent.kanon.rst │ ├── acapy_agent.ledger.merkel_validation.rst │ ├── acapy_agent.ledger.multiple_ledger.rst │ ├── acapy_agent.ledger.rst │ ├── acapy_agent.messaging.credential_definitions.rst │ ├── acapy_agent.messaging.decorators.rst │ ├── acapy_agent.messaging.jsonld.rst │ ├── acapy_agent.messaging.models.rst │ ├── acapy_agent.messaging.rst │ ├── acapy_agent.messaging.schemas.rst │ ├── acapy_agent.multitenant.admin.rst │ ├── acapy_agent.multitenant.rst │ ├── acapy_agent.protocols.actionmenu.rst │ ├── acapy_agent.protocols.actionmenu.v1_0.handlers.rst │ ├── acapy_agent.protocols.actionmenu.v1_0.messages.rst │ ├── acapy_agent.protocols.actionmenu.v1_0.models.rst │ ├── acapy_agent.protocols.actionmenu.v1_0.rst │ ├── acapy_agent.protocols.basicmessage.rst │ ├── acapy_agent.protocols.basicmessage.v1_0.handlers.rst │ ├── acapy_agent.protocols.basicmessage.v1_0.messages.rst │ ├── acapy_agent.protocols.basicmessage.v1_0.rst │ ├── acapy_agent.protocols.coordinate_mediation.rst │ ├── acapy_agent.protocols.coordinate_mediation.v1_0.handlers.rst │ ├── acapy_agent.protocols.coordinate_mediation.v1_0.messages.inner.rst │ ├── acapy_agent.protocols.coordinate_mediation.v1_0.messages.rst │ ├── acapy_agent.protocols.coordinate_mediation.v1_0.models.rst │ ├── acapy_agent.protocols.coordinate_mediation.v1_0.rst │ ├── acapy_agent.protocols.did_rotate.rst │ ├── acapy_agent.protocols.did_rotate.v1_0.handlers.rst │ ├── acapy_agent.protocols.did_rotate.v1_0.messages.rst │ ├── acapy_agent.protocols.did_rotate.v1_0.models.rst │ ├── acapy_agent.protocols.did_rotate.v1_0.rst │ ├── acapy_agent.protocols.didexchange.rst │ ├── acapy_agent.protocols.didexchange.v1_0.handlers.rst │ ├── acapy_agent.protocols.didexchange.v1_0.messages.rst │ ├── acapy_agent.protocols.didexchange.v1_0.rst │ ├── acapy_agent.protocols.discovery.rst │ ├── acapy_agent.protocols.discovery.v1_0.handlers.rst │ ├── acapy_agent.protocols.discovery.v1_0.messages.rst │ ├── acapy_agent.protocols.discovery.v1_0.models.rst │ ├── acapy_agent.protocols.discovery.v1_0.rst │ ├── acapy_agent.protocols.discovery.v2_0.handlers.rst │ ├── acapy_agent.protocols.discovery.v2_0.messages.rst │ ├── acapy_agent.protocols.discovery.v2_0.models.rst │ ├── acapy_agent.protocols.discovery.v2_0.rst │ ├── acapy_agent.protocols.endorse_transaction.rst │ ├── acapy_agent.protocols.endorse_transaction.v1_0.handlers.rst │ ├── acapy_agent.protocols.endorse_transaction.v1_0.messages.rst │ ├── acapy_agent.protocols.endorse_transaction.v1_0.models.rst │ ├── acapy_agent.protocols.endorse_transaction.v1_0.rst │ ├── acapy_agent.protocols.introduction.rst │ ├── acapy_agent.protocols.introduction.v0_1.handlers.rst │ ├── acapy_agent.protocols.introduction.v0_1.messages.rst │ ├── acapy_agent.protocols.introduction.v0_1.rst │ ├── acapy_agent.protocols.issue_credential.rst │ ├── acapy_agent.protocols.issue_credential.v1_0.handlers.rst │ ├── acapy_agent.protocols.issue_credential.v1_0.messages.inner.rst │ ├── acapy_agent.protocols.issue_credential.v1_0.messages.rst │ ├── acapy_agent.protocols.issue_credential.v1_0.models.rst │ ├── acapy_agent.protocols.issue_credential.v1_0.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.anoncreds.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.indy.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.ld_proof.models.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.ld_proof.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.vc_di.models.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.formats.vc_di.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.handlers.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.messages.inner.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.messages.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.models.detail.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.models.rst │ ├── acapy_agent.protocols.issue_credential.v2_0.rst │ ├── acapy_agent.protocols.notification.rst │ ├── acapy_agent.protocols.notification.v1_0.handlers.rst │ ├── acapy_agent.protocols.notification.v1_0.messages.rst │ ├── acapy_agent.protocols.notification.v1_0.rst │ ├── acapy_agent.protocols.out_of_band.rst │ ├── acapy_agent.protocols.out_of_band.v1_0.handlers.rst │ ├── acapy_agent.protocols.out_of_band.v1_0.messages.rst │ ├── acapy_agent.protocols.out_of_band.v1_0.models.rst │ ├── acapy_agent.protocols.out_of_band.v1_0.rst │ ├── acapy_agent.protocols.present_proof.anoncreds.rst │ ├── acapy_agent.protocols.present_proof.dif.rst │ ├── acapy_agent.protocols.present_proof.indy.rst │ ├── acapy_agent.protocols.present_proof.rst │ ├── acapy_agent.protocols.present_proof.v1_0.handlers.rst │ ├── acapy_agent.protocols.present_proof.v1_0.messages.rst │ ├── acapy_agent.protocols.present_proof.v1_0.models.rst │ ├── acapy_agent.protocols.present_proof.v1_0.rst │ ├── acapy_agent.protocols.present_proof.v2_0.formats.anoncreds.rst │ ├── acapy_agent.protocols.present_proof.v2_0.formats.dif.rst │ ├── acapy_agent.protocols.present_proof.v2_0.formats.indy.rst │ ├── acapy_agent.protocols.present_proof.v2_0.formats.rst │ ├── acapy_agent.protocols.present_proof.v2_0.handlers.rst │ ├── acapy_agent.protocols.present_proof.v2_0.messages.rst │ ├── acapy_agent.protocols.present_proof.v2_0.models.rst │ ├── acapy_agent.protocols.present_proof.v2_0.rst │ ├── acapy_agent.protocols.problem_report.rst │ ├── acapy_agent.protocols.problem_report.v1_0.rst │ ├── acapy_agent.protocols.revocation_notification.rst │ ├── acapy_agent.protocols.revocation_notification.v1_0.handlers.rst │ ├── acapy_agent.protocols.revocation_notification.v1_0.messages.rst │ ├── acapy_agent.protocols.revocation_notification.v1_0.models.rst │ ├── acapy_agent.protocols.revocation_notification.v1_0.rst │ ├── acapy_agent.protocols.revocation_notification.v2_0.handlers.rst │ ├── acapy_agent.protocols.revocation_notification.v2_0.messages.rst │ ├── acapy_agent.protocols.revocation_notification.v2_0.models.rst │ ├── acapy_agent.protocols.revocation_notification.v2_0.rst │ ├── acapy_agent.protocols.routing.rst │ ├── acapy_agent.protocols.routing.v1_0.handlers.rst │ ├── acapy_agent.protocols.routing.v1_0.messages.rst │ ├── acapy_agent.protocols.routing.v1_0.models.rst │ ├── acapy_agent.protocols.routing.v1_0.rst │ ├── acapy_agent.protocols.rst │ ├── acapy_agent.protocols.trustping.rst │ ├── acapy_agent.protocols.trustping.v1_0.handlers.rst │ ├── acapy_agent.protocols.trustping.v1_0.messages.rst │ ├── acapy_agent.protocols.trustping.v1_0.rst │ ├── acapy_agent.resolver.default.rst │ ├── acapy_agent.resolver.rst │ ├── acapy_agent.revocation.models.rst │ ├── acapy_agent.revocation.rst │ ├── acapy_agent.revocation_anoncreds.rst │ ├── acapy_agent.rst │ ├── acapy_agent.settings.rst │ ├── acapy_agent.storage.rst │ ├── acapy_agent.storage.vc_holder.rst │ ├── acapy_agent.tails.rst │ ├── acapy_agent.transport.inbound.rst │ ├── acapy_agent.transport.outbound.rst │ ├── acapy_agent.transport.queue.rst │ ├── acapy_agent.transport.rst │ ├── acapy_agent.utils.multiformats.rst │ ├── acapy_agent.utils.rst │ ├── acapy_agent.vc.data_integrity.cryptosuites.rst │ ├── acapy_agent.vc.data_integrity.models.rst │ ├── acapy_agent.vc.data_integrity.rst │ ├── acapy_agent.vc.ld_proofs.crypto.rst │ ├── acapy_agent.vc.ld_proofs.purposes.rst │ ├── acapy_agent.vc.ld_proofs.resources.rst │ ├── acapy_agent.vc.ld_proofs.rst │ ├── acapy_agent.vc.ld_proofs.suites.rst │ ├── acapy_agent.vc.rst │ ├── acapy_agent.vc.vc_di.rst │ ├── acapy_agent.vc.vc_ld.models.rst │ ├── acapy_agent.vc.vc_ld.rst │ ├── acapy_agent.wallet.keys.rst │ ├── acapy_agent.wallet.models.rst │ ├── acapy_agent.wallet.rst │ └── modules.rst ├── gettingStarted │ ├── ACA-PyAgentArchitecture.md │ ├── ACA-PyBasics.md │ ├── ACA-PyBigPicture.md │ ├── ACA-PyDeveloperDemos.md │ ├── AgentConnections.md │ ├── ConnectIndyNetwork.md │ ├── CredentialRevocation.md │ ├── DIDCommMessaging.md │ ├── DIDCommRoutingExample.md │ ├── DIDcommMsgs.md │ ├── DecentralizedIdentityDemos.md │ ├── IndyACA-PyDevOptions.md │ ├── IndyBasics.md │ ├── IssuingAnonCredsCredentials.md │ ├── PresentingAnonCredsProofs.md │ ├── README.md │ ├── RoutingEncryption.md │ └── YourOwnACA-PyAgent.md ├── index.rst ├── make.bat ├── mkdocs-dockerfile.yml ├── readthedocs.yaml ├── requirements.txt └── testing │ ├── AgentTracing.md │ ├── BDDTests.md │ ├── IntegrationTests.md │ ├── Logging.md │ ├── Troubleshooting.md │ └── UnitTests.md ├── mkdocs-requirements.txt ├── mkdocs.yml ├── open-api ├── openAPIJSON.config ├── openapi.json └── swagger.json ├── overrides └── README.md ├── poetry.lock ├── pyproject.toml ├── scenarios ├── Dockerfile ├── README.md ├── conftest.py ├── examples │ ├── anoncreds_issuance_and_revocation │ │ ├── docker-compose.yml │ │ └── example.py │ ├── connectionless │ │ ├── docker-compose.yml │ │ └── example.py │ ├── did_indy_issuance_and_revocation │ │ ├── docker-compose.yml │ │ └── example.py │ ├── json_ld │ │ ├── docker-compose.yml │ │ └── example.py │ ├── kanon_issuance_and_presentation │ │ ├── docker-compose.yml │ │ └── example.py │ ├── mediation │ │ ├── docker-compose.yml │ │ └── example.py │ ├── multitenancy │ │ ├── docker-compose.yml │ │ └── example.py │ ├── multiuse_invitations │ │ ├── docker-compose.yml │ │ └── example.py │ ├── presenting_revoked_credential │ │ ├── docker-compose.yml │ │ └── example.py │ ├── restart_anoncreds_upgrade │ │ ├── docker-compose.yml │ │ └── example.py │ ├── self_attested │ │ ├── docker-compose.yml │ │ └── example.py │ ├── simple │ │ ├── docker-compose.yml │ │ └── example.py │ ├── simple_restart │ │ ├── docker-compose.yml │ │ └── example.py │ ├── util.py │ └── vc_holder │ │ ├── docker-compose.yml │ │ └── example.py ├── poetry.lock └── pyproject.toml ├── scripts ├── genChangeLog.sh ├── generate-open-api-spec ├── prepmkdocs.sh ├── run_docker ├── run_postgres └── run_tests └── sonar-project.properties /.commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | }; 4 | -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.devcontainer/post-install.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/LTS-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/LTS-README.md -------------------------------------------------------------------------------- /.github/actions/is-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/actions/is-release/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/lts-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/lts-versions.txt -------------------------------------------------------------------------------- /.github/workflows/bdd-interop-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/bdd-interop-tests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/pip-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/pip-audit.yml -------------------------------------------------------------------------------- /.github/workflows/pr-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/pr-tests.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/snyk-lts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/snyk-lts.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/snyk.yml -------------------------------------------------------------------------------- /.github/workflows/sonar-merge-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/sonar-merge-main.yml -------------------------------------------------------------------------------- /.github/workflows/sonar-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/sonar-pr.yml -------------------------------------------------------------------------------- /.github/workflows/tag-recreate-lts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.github/workflows/tag-recreate-lts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- 1 | [tgit] 2 | warnnosignedoffby = true 3 | -------------------------------------------------------------------------------- /.vscode-sample/alice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/alice.yml -------------------------------------------------------------------------------- /.vscode-sample/author.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/author.yml -------------------------------------------------------------------------------- /.vscode-sample/endorser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/endorser.yml -------------------------------------------------------------------------------- /.vscode-sample/faber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/faber.yml -------------------------------------------------------------------------------- /.vscode-sample/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/launch.json -------------------------------------------------------------------------------- /.vscode-sample/multitenant-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/multitenant-admin.yml -------------------------------------------------------------------------------- /.vscode-sample/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/.vscode-sample/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/LICENSE -------------------------------------------------------------------------------- /LTS-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/LTS-Strategy.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Managing-ACA-Py-Doc-Site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/Managing-ACA-Py-Doc-Site.md -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/NOTICES -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aca-py_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/aca-py_architecture.png -------------------------------------------------------------------------------- /acapy_agent/__init__.py: -------------------------------------------------------------------------------- 1 | """Aries Cloud Agent.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/__main__.py -------------------------------------------------------------------------------- /acapy_agent/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/admin/base_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/base_server.py -------------------------------------------------------------------------------- /acapy_agent/admin/decorators/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/decorators/auth.py -------------------------------------------------------------------------------- /acapy_agent/admin/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/error.py -------------------------------------------------------------------------------- /acapy_agent/admin/request_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/request_context.py -------------------------------------------------------------------------------- /acapy_agent/admin/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/routes.py -------------------------------------------------------------------------------- /acapy_agent/admin/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/server.py -------------------------------------------------------------------------------- /acapy_agent/admin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/admin/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/admin/tests/test_auth.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/__init__.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/base.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/constants.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/did_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/did_web/routes.py: -------------------------------------------------------------------------------- 1 | """Routes for DID Web Registry.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/did_web/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/legacy_indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/legacy_indy/routes.py: -------------------------------------------------------------------------------- 1 | """Routes for Legacy Indy Registry.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/default/legacy_indy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/error_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/error_messages.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/events.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/holder.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/issuer.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/models/proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/models/proof.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/models/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/models/schema.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/models/utils.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/registry.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/revocation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/routes/__init__.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/cred_defs/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds credential definition routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/cred_defs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds credential definition routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds credential revocation routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/credentials/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds credential revocation routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/lists/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds revocation list routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/lists/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds revocation list routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/registry/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds revocation registry routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/registry/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds revocation registry routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/tails/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds tails file routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/revocation/tails/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds tails file routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | """AnonCreds schema routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/routes/schemas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for AnonCreds schema routes.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/anoncreds/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/util.py -------------------------------------------------------------------------------- /acapy_agent/anoncreds/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/anoncreds/verifier.py -------------------------------------------------------------------------------- /acapy_agent/askar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/askar/didcomm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/askar/didcomm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/askar/didcomm/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/didcomm/v1.py -------------------------------------------------------------------------------- /acapy_agent/askar/didcomm/v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/didcomm/v2.py -------------------------------------------------------------------------------- /acapy_agent/askar/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/profile.py -------------------------------------------------------------------------------- /acapy_agent/askar/profile_anon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/profile_anon.py -------------------------------------------------------------------------------- /acapy_agent/askar/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/store.py -------------------------------------------------------------------------------- /acapy_agent/askar/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/askar/tests/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/tests/test_profile.py -------------------------------------------------------------------------------- /acapy_agent/askar/tests/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/askar/tests/test_store.py -------------------------------------------------------------------------------- /acapy_agent/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/cache/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/cache/base.py -------------------------------------------------------------------------------- /acapy_agent/cache/in_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/cache/in_memory.py -------------------------------------------------------------------------------- /acapy_agent/cache/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/__init__.py -------------------------------------------------------------------------------- /acapy_agent/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/help.py -------------------------------------------------------------------------------- /acapy_agent/commands/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/provision.py -------------------------------------------------------------------------------- /acapy_agent/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/start.py -------------------------------------------------------------------------------- /acapy_agent/commands/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/commands/tests/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/tests/test_help.py -------------------------------------------------------------------------------- /acapy_agent/commands/tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/tests/test_init.py -------------------------------------------------------------------------------- /acapy_agent/commands/tests/test_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/tests/test_start.py -------------------------------------------------------------------------------- /acapy_agent/commands/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/commands/upgrade.py -------------------------------------------------------------------------------- /acapy_agent/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/config/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/argparse.py -------------------------------------------------------------------------------- /acapy_agent/config/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/banner.py -------------------------------------------------------------------------------- /acapy_agent/config/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/base.py -------------------------------------------------------------------------------- /acapy_agent/config/base_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/base_context.py -------------------------------------------------------------------------------- /acapy_agent/config/default_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/default_context.py -------------------------------------------------------------------------------- /acapy_agent/config/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/error.py -------------------------------------------------------------------------------- /acapy_agent/config/injection_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/injection_context.py -------------------------------------------------------------------------------- /acapy_agent/config/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/injector.py -------------------------------------------------------------------------------- /acapy_agent/config/ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/ledger.py -------------------------------------------------------------------------------- /acapy_agent/config/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/logging/__init__.py -------------------------------------------------------------------------------- /acapy_agent/config/logging/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/logging/base.py -------------------------------------------------------------------------------- /acapy_agent/config/logging/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/logging/filters.py -------------------------------------------------------------------------------- /acapy_agent/config/plugin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/plugin_settings.py -------------------------------------------------------------------------------- /acapy_agent/config/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/provider.py -------------------------------------------------------------------------------- /acapy_agent/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/settings.py -------------------------------------------------------------------------------- /acapy_agent/config/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/config/tests/test_ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/tests/test_ledger.py -------------------------------------------------------------------------------- /acapy_agent/config/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/tests/test_logging.py -------------------------------------------------------------------------------- /acapy_agent/config/tests/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/tests/test_wallet.py -------------------------------------------------------------------------------- /acapy_agent/config/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/util.py -------------------------------------------------------------------------------- /acapy_agent/config/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/config/wallet.py -------------------------------------------------------------------------------- /acapy_agent/connections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/connections/base_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/connections/base_manager.py -------------------------------------------------------------------------------- /acapy_agent/connections/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/connections/models/diddoc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/connections/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/connections/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/connections/routes.py -------------------------------------------------------------------------------- /acapy_agent/connections/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/core/conductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/conductor.py -------------------------------------------------------------------------------- /acapy_agent/core/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/dispatcher.py -------------------------------------------------------------------------------- /acapy_agent/core/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/error.py -------------------------------------------------------------------------------- /acapy_agent/core/event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/event_bus.py -------------------------------------------------------------------------------- /acapy_agent/core/goal_code_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/goal_code_registry.py -------------------------------------------------------------------------------- /acapy_agent/core/oob_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/oob_processor.py -------------------------------------------------------------------------------- /acapy_agent/core/plugin_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/plugin_registry.py -------------------------------------------------------------------------------- /acapy_agent/core/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/profile.py -------------------------------------------------------------------------------- /acapy_agent/core/protocol_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/protocol_registry.py -------------------------------------------------------------------------------- /acapy_agent/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/core/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/tests/conftest.py -------------------------------------------------------------------------------- /acapy_agent/core/tests/test_conductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/tests/test_conductor.py -------------------------------------------------------------------------------- /acapy_agent/core/tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/tests/test_error.py -------------------------------------------------------------------------------- /acapy_agent/core/tests/test_event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/tests/test_event_bus.py -------------------------------------------------------------------------------- /acapy_agent/core/tests/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/tests/test_profile.py -------------------------------------------------------------------------------- /acapy_agent/core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/core/util.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/database_manager/__init__.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/databases/sqlite_normalized/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/db_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/database_manager/db_types.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/dbstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/database_manager/dbstore.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/database_manager/error.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/database_manager/key.py -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_normalized/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_normalized/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_normalized/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_nosql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_nosql/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/database_manager/wql_nosql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/did/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/did/did_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/did/did_key.py -------------------------------------------------------------------------------- /acapy_agent/did/indy/indy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/did/indy/indy_manager.py -------------------------------------------------------------------------------- /acapy_agent/did/indy/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/did/indy/routes.py -------------------------------------------------------------------------------- /acapy_agent/did/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/did/tests/test_dids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/did/tests/test_dids.py -------------------------------------------------------------------------------- /acapy_agent/didcomm_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/didcomm_v2/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/didcomm_v2/adapters.py -------------------------------------------------------------------------------- /acapy_agent/didcomm_v2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/holder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/holder/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/holder/routes.py -------------------------------------------------------------------------------- /acapy_agent/holder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/holder/tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/holder/tests/test_routes.py -------------------------------------------------------------------------------- /acapy_agent/indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/constants.py -------------------------------------------------------------------------------- /acapy_agent/indy/credx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/credx/holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/credx/holder.py -------------------------------------------------------------------------------- /acapy_agent/indy/credx/holder_kanon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/credx/holder_kanon.py -------------------------------------------------------------------------------- /acapy_agent/indy/credx/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/credx/issuer.py -------------------------------------------------------------------------------- /acapy_agent/indy/credx/issuer_kanon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/credx/issuer_kanon.py -------------------------------------------------------------------------------- /acapy_agent/indy/credx/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/credx/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/credx/verifier.py -------------------------------------------------------------------------------- /acapy_agent/indy/holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/holder.py -------------------------------------------------------------------------------- /acapy_agent/indy/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/issuer.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/models/cred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/cred.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/cred_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/cred_abstract.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/cred_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/cred_def.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/cred_precis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/cred_precis.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/cred_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/cred_request.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/predicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/predicate.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/pres_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/pres_preview.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/proof.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/proof_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/proof_request.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/revocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/revocation.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/schema.py -------------------------------------------------------------------------------- /acapy_agent/indy/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/models/xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/models/xform.py -------------------------------------------------------------------------------- /acapy_agent/indy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/indy/tests/test_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/tests/test_verifier.py -------------------------------------------------------------------------------- /acapy_agent/indy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/util.py -------------------------------------------------------------------------------- /acapy_agent/indy/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/indy/verifier.py -------------------------------------------------------------------------------- /acapy_agent/kanon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/kanon/didcomm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/kanon/didcomm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/kanon/didcomm/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/kanon/didcomm/v1.py -------------------------------------------------------------------------------- /acapy_agent/kanon/didcomm/v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/kanon/didcomm/v2.py -------------------------------------------------------------------------------- /acapy_agent/kanon/profile_anon_kanon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/kanon/profile_anon_kanon.py -------------------------------------------------------------------------------- /acapy_agent/kanon/store_kanon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/kanon/store_kanon.py -------------------------------------------------------------------------------- /acapy_agent/kanon/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/base.py -------------------------------------------------------------------------------- /acapy_agent/ledger/endpoint_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/endpoint_type.py -------------------------------------------------------------------------------- /acapy_agent/ledger/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/error.py -------------------------------------------------------------------------------- /acapy_agent/ledger/indy_vdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/indy_vdr.py -------------------------------------------------------------------------------- /acapy_agent/ledger/merkel_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/merkel_validation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/multiple_ledger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/multiple_ledger/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/routes.py -------------------------------------------------------------------------------- /acapy_agent/ledger/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/ledger/tests/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/tests/test_role.py -------------------------------------------------------------------------------- /acapy_agent/ledger/tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/tests/test_routes.py -------------------------------------------------------------------------------- /acapy_agent/ledger/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/ledger/util.py -------------------------------------------------------------------------------- /acapy_agent/messaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/agent_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/agent_message.py -------------------------------------------------------------------------------- /acapy_agent/messaging/base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/base_handler.py -------------------------------------------------------------------------------- /acapy_agent/messaging/base_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/base_message.py -------------------------------------------------------------------------------- /acapy_agent/messaging/credential_definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/credential_definitions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/decorators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/decorators/base.py -------------------------------------------------------------------------------- /acapy_agent/messaging/decorators/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/error.py -------------------------------------------------------------------------------- /acapy_agent/messaging/jsonld/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/jsonld/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/jsonld/error.py -------------------------------------------------------------------------------- /acapy_agent/messaging/jsonld/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/jsonld/routes.py -------------------------------------------------------------------------------- /acapy_agent/messaging/message_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/message_type.py -------------------------------------------------------------------------------- /acapy_agent/messaging/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/models/__init__.py -------------------------------------------------------------------------------- /acapy_agent/messaging/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/models/base.py -------------------------------------------------------------------------------- /acapy_agent/messaging/models/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/models/openapi.py -------------------------------------------------------------------------------- /acapy_agent/messaging/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/request_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/request_context.py -------------------------------------------------------------------------------- /acapy_agent/messaging/responder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/responder.py -------------------------------------------------------------------------------- /acapy_agent/messaging/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/schemas/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/schemas/routes.py -------------------------------------------------------------------------------- /acapy_agent/messaging/schemas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/schemas/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/schemas/util.py -------------------------------------------------------------------------------- /acapy_agent/messaging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/messaging/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/tests/test_util.py -------------------------------------------------------------------------------- /acapy_agent/messaging/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/util.py -------------------------------------------------------------------------------- /acapy_agent/messaging/valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/messaging/valid.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/multitenant/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/multitenant/admin/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/admin/routes.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/admin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/multitenant/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/base.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/cache.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/error.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/manager.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/route_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/multitenant/route_manager.py -------------------------------------------------------------------------------- /acapy_agent/multitenant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/protocols/README.md -------------------------------------------------------------------------------- /acapy_agent/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/actionmenu/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/basicmessage/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/messages/inner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for models.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/protocols/coordinate_mediation/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/did_rotate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/did_rotate/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/did_rotate/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/did_rotate/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/did_rotate/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didcomm_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/protocols/didcomm_prefix.py -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/didexchange/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/discovery/v2_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/endorse_transaction/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/introduction/v0_1/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/anoncreds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/anoncreds/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/indy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/ld_proof/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/ld_proof/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/ld_proof/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/ld_proof/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/vc_di/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/vc_di/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/formats/vc_di/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/messages/inner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/messages/inner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/models/detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/models/detail/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/issue_credential/v2_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/notification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/notification/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/notification/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/notification/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/notification/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/out_of_band/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/anoncreds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/dif/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/dif/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/formats/anoncreds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/formats/dif/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/formats/dif/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/formats/indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/present_proof/v2_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/problem_report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/problem_report/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/revocation_notification/v2_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/routing/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/protocols/trustping/v1_0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/resolver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/__init__.py -------------------------------------------------------------------------------- /acapy_agent/resolver/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/base.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/__init__.py: -------------------------------------------------------------------------------- 1 | """Resolvers included in ACA-Py by Default.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/resolver/default/indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/indy.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/jwk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/jwk.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/key.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/peer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/peer1.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/peer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/peer2.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/peer3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/peer3.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/peer4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/peer4.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/resolver/default/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/web.py -------------------------------------------------------------------------------- /acapy_agent/resolver/default/webvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/default/webvh.py -------------------------------------------------------------------------------- /acapy_agent/resolver/did_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/did_resolver.py -------------------------------------------------------------------------------- /acapy_agent/resolver/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/routes.py -------------------------------------------------------------------------------- /acapy_agent/resolver/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/tests/__init__.py -------------------------------------------------------------------------------- /acapy_agent/resolver/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/resolver/tests/test_base.py -------------------------------------------------------------------------------- /acapy_agent/revocation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/revocation/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/error.py -------------------------------------------------------------------------------- /acapy_agent/revocation/indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/indy.py -------------------------------------------------------------------------------- /acapy_agent/revocation/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/manager.py -------------------------------------------------------------------------------- /acapy_agent/revocation/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/revocation/models/indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/models/indy.py -------------------------------------------------------------------------------- /acapy_agent/revocation/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/revocation/recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/recover.py -------------------------------------------------------------------------------- /acapy_agent/revocation/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/routes.py -------------------------------------------------------------------------------- /acapy_agent/revocation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/revocation/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/revocation/util.py -------------------------------------------------------------------------------- /acapy_agent/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/settings/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/settings/routes.py -------------------------------------------------------------------------------- /acapy_agent/settings/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/storage/askar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/askar.py -------------------------------------------------------------------------------- /acapy_agent/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/base.py -------------------------------------------------------------------------------- /acapy_agent/storage/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/error.py -------------------------------------------------------------------------------- /acapy_agent/storage/kanon_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/kanon_storage.py -------------------------------------------------------------------------------- /acapy_agent/storage/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/record.py -------------------------------------------------------------------------------- /acapy_agent/storage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Storage test suite 3 | """ 4 | -------------------------------------------------------------------------------- /acapy_agent/storage/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/tests/conftest.py -------------------------------------------------------------------------------- /acapy_agent/storage/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/type.py -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/askar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/vc_holder/askar.py -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/vc_holder/base.py -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/kanon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/vc_holder/kanon.py -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/storage/vc_holder/xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/storage/vc_holder/xform.py -------------------------------------------------------------------------------- /acapy_agent/tails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/tails/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tails/base.py -------------------------------------------------------------------------------- /acapy_agent/tails/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tails/error.py -------------------------------------------------------------------------------- /acapy_agent/tails/indy_tails_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tails/indy_tails_server.py -------------------------------------------------------------------------------- /acapy_agent/tails/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/tails/tests/test_indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tails/tests/test_indy.py -------------------------------------------------------------------------------- /acapy_agent/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/tests/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tests/mock.py -------------------------------------------------------------------------------- /acapy_agent/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/tests/test_main.py -------------------------------------------------------------------------------- /acapy_agent/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/error.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/base.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/http.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/manager.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/message.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/receipt.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/session.py -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/inbound/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/inbound/ws.py -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/outbound/base.py -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/outbound/http.py -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/outbound/status.py -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/outbound/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/outbound/ws.py -------------------------------------------------------------------------------- /acapy_agent/transport/pack_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/pack_format.py -------------------------------------------------------------------------------- /acapy_agent/transport/queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/queue/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/queue/base.py -------------------------------------------------------------------------------- /acapy_agent/transport/queue/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/queue/basic.py -------------------------------------------------------------------------------- /acapy_agent/transport/queue/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/stats.py -------------------------------------------------------------------------------- /acapy_agent/transport/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/transport/v2_pack_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/v2_pack_format.py -------------------------------------------------------------------------------- /acapy_agent/transport/wire_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/transport/wire_format.py -------------------------------------------------------------------------------- /acapy_agent/utils/__init__.py: -------------------------------------------------------------------------------- 1 | sentinel = object() 2 | -------------------------------------------------------------------------------- /acapy_agent/utils/classloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/classloader.py -------------------------------------------------------------------------------- /acapy_agent/utils/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/dependencies.py -------------------------------------------------------------------------------- /acapy_agent/utils/endorsement_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/endorsement_setup.py -------------------------------------------------------------------------------- /acapy_agent/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/env.py -------------------------------------------------------------------------------- /acapy_agent/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/general.py -------------------------------------------------------------------------------- /acapy_agent/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/http.py -------------------------------------------------------------------------------- /acapy_agent/utils/jwe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/jwe.py -------------------------------------------------------------------------------- /acapy_agent/utils/multi_ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/multi_ledger.py -------------------------------------------------------------------------------- /acapy_agent/utils/multiformats/__init__.py: -------------------------------------------------------------------------------- 1 | """Multiformats utility functions.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/utils/outofband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/outofband.py -------------------------------------------------------------------------------- /acapy_agent/utils/plugin_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/plugin_installer.py -------------------------------------------------------------------------------- /acapy_agent/utils/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/profiles.py -------------------------------------------------------------------------------- /acapy_agent/utils/repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/repeat.py -------------------------------------------------------------------------------- /acapy_agent/utils/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/server.py -------------------------------------------------------------------------------- /acapy_agent/utils/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/stats.py -------------------------------------------------------------------------------- /acapy_agent/utils/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/task_queue.py -------------------------------------------------------------------------------- /acapy_agent/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/testing.py -------------------------------------------------------------------------------- /acapy_agent/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/utils/tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tests/test_http.py -------------------------------------------------------------------------------- /acapy_agent/utils/tests/test_jwe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tests/test_jwe.py -------------------------------------------------------------------------------- /acapy_agent/utils/tests/test_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tests/test_repeat.py -------------------------------------------------------------------------------- /acapy_agent/utils/tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tests/test_stats.py -------------------------------------------------------------------------------- /acapy_agent/utils/tests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tests/test_tracing.py -------------------------------------------------------------------------------- /acapy_agent/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/utils/tracing.py -------------------------------------------------------------------------------- /acapy_agent/vc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/data_integrity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/data_integrity/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/data_integrity/errors.py -------------------------------------------------------------------------------- /acapy_agent/vc/data_integrity/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/data_integrity/manager.py -------------------------------------------------------------------------------- /acapy_agent/vc/data_integrity/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/data_integrity/routes.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/check.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/constants.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/crypto/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/error.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/ld_proofs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/ld_proofs.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/proof_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/ld_proofs/proof_set.py -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/purposes/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/suites/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/ld_proofs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/routes.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/tests/contexts/bbs_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/contexts/bbs_v1.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/contexts/did_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/contexts/did_v1.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/contexts/odrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/contexts/odrl.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/data/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/dids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/dids/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/document_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/document_loader.py -------------------------------------------------------------------------------- /acapy_agent/vc/tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/tests/test_routes.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_di/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_di/manager.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/prove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_di/prove.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/tests/test_prove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_di/tests/test_prove.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_di/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_di/verify.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/external_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/external_suite.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/issue.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/manager.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/models/__init__.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/models/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/models/options.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/prove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/prove.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/tests/test_vc_ld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/tests/test_vc_ld.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/tests/test_vc_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/tests/test_vc_v2.py -------------------------------------------------------------------------------- /acapy_agent/vc/vc_ld/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/vc/vc_ld/verify.py -------------------------------------------------------------------------------- /acapy_agent/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/version.py -------------------------------------------------------------------------------- /acapy_agent/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | """Abstract and Indy wallet handling.""" 2 | -------------------------------------------------------------------------------- /acapy_agent/wallet/anoncreds_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/anoncreds_upgrade.py -------------------------------------------------------------------------------- /acapy_agent/wallet/askar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/askar.py -------------------------------------------------------------------------------- /acapy_agent/wallet/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/base.py -------------------------------------------------------------------------------- /acapy_agent/wallet/bbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/bbs.py -------------------------------------------------------------------------------- /acapy_agent/wallet/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/crypto.py -------------------------------------------------------------------------------- /acapy_agent/wallet/did_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/did_info.py -------------------------------------------------------------------------------- /acapy_agent/wallet/did_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/did_method.py -------------------------------------------------------------------------------- /acapy_agent/wallet/did_posture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/did_posture.py -------------------------------------------------------------------------------- /acapy_agent/wallet/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/error.py -------------------------------------------------------------------------------- /acapy_agent/wallet/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/jwt.py -------------------------------------------------------------------------------- /acapy_agent/wallet/kanon_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/kanon_wallet.py -------------------------------------------------------------------------------- /acapy_agent/wallet/key_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/key_type.py -------------------------------------------------------------------------------- /acapy_agent/wallet/keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/wallet/keys/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/keys/manager.py -------------------------------------------------------------------------------- /acapy_agent/wallet/keys/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/keys/routes.py -------------------------------------------------------------------------------- /acapy_agent/wallet/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/wallet/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acapy_agent/wallet/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/routes.py -------------------------------------------------------------------------------- /acapy_agent/wallet/sd_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/sd_jwt.py -------------------------------------------------------------------------------- /acapy_agent/wallet/singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/singletons.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Wallet test suite 3 | """ 4 | -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_askar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_askar.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_bbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_bbs.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_crypto.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_jwt.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_routes.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_sd_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_sd_jwt.py -------------------------------------------------------------------------------- /acapy_agent/wallet/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/tests/test_util.py -------------------------------------------------------------------------------- /acapy_agent/wallet/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/acapy_agent/wallet/util.py -------------------------------------------------------------------------------- /charts/acapy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/charts/acapy/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/conftest.py -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/alice-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/alice-local.sh -------------------------------------------------------------------------------- /demo/askar-indy-args.yml: -------------------------------------------------------------------------------- 1 | wallet-type: askar 2 | 3 | -------------------------------------------------------------------------------- /demo/bdd_support/agent_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/bdd_support/agent_test_utils.py -------------------------------------------------------------------------------- /demo/behave.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/behave.ini -------------------------------------------------------------------------------- /demo/collateral/1-Faber-Invitation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/1-Faber-Invitation-1.png -------------------------------------------------------------------------------- /demo/collateral/1-Faber-Invitation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/1-Faber-Invitation-2.png -------------------------------------------------------------------------------- /demo/collateral/1-Faber-Invitation-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/1-Faber-Invitation-3.png -------------------------------------------------------------------------------- /demo/collateral/1-Faber-Invitation-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/1-Faber-Invitation-4.png -------------------------------------------------------------------------------- /demo/collateral/2-Alice-Invitation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/2-Alice-Invitation-1.png -------------------------------------------------------------------------------- /demo/collateral/2-Alice-Invitation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/2-Alice-Invitation-2.png -------------------------------------------------------------------------------- /demo/collateral/2-Alice-Invitation-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/2-Alice-Invitation-3.png -------------------------------------------------------------------------------- /demo/collateral/2-Alice-Invitation-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/2-Alice-Invitation-4.png -------------------------------------------------------------------------------- /demo/collateral/2-Alice-Invitation-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/2-Alice-Invitation-5.png -------------------------------------------------------------------------------- /demo/collateral/3-Faber-Connection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/3-Faber-Connection-1.png -------------------------------------------------------------------------------- /demo/collateral/3-Faber-Connection-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/3-Faber-Connection-2.png -------------------------------------------------------------------------------- /demo/collateral/3-Faber-Connection-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/3-Faber-Connection-3.png -------------------------------------------------------------------------------- /demo/collateral/3-Faber-Connection-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/3-Faber-Connection-4.png -------------------------------------------------------------------------------- /demo/collateral/4-Alice-Connection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/4-Alice-Connection-1.png -------------------------------------------------------------------------------- /demo/collateral/4-Alice-Connection-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/4-Alice-Connection-2.png -------------------------------------------------------------------------------- /demo/collateral/5-Faber-Connection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/5-Faber-Connection-1.png -------------------------------------------------------------------------------- /demo/collateral/6-Alice-Basic-Msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/6-Alice-Basic-Msg.png -------------------------------------------------------------------------------- /demo/collateral/7-Faber-Basic-Msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/7-Faber-Basic-Msg.png -------------------------------------------------------------------------------- /demo/collateral/8-Alice-Basic-Msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/8-Alice-Basic-Msg.png -------------------------------------------------------------------------------- /demo/collateral/Alice-Agent-Local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/Alice-Agent-Local.png -------------------------------------------------------------------------------- /demo/collateral/Alice-Agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/Alice-Agent.png -------------------------------------------------------------------------------- /demo/collateral/C-1-Faber-DID-Public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-1-Faber-DID-Public.png -------------------------------------------------------------------------------- /demo/collateral/C-3-Faber-Info-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-3-Faber-Info-1.png -------------------------------------------------------------------------------- /demo/collateral/C-3-Faber-Info-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-3-Faber-Info-2.png -------------------------------------------------------------------------------- /demo/collateral/C-3-Faber-Info-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-3-Faber-Info-3.png -------------------------------------------------------------------------------- /demo/collateral/C-3-Faber-Info-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-3-Faber-Info-4.png -------------------------------------------------------------------------------- /demo/collateral/C-3-Faber-Info-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/C-3-Faber-Info-5.png -------------------------------------------------------------------------------- /demo/collateral/Faber-Agent-Local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/Faber-Agent-Local.png -------------------------------------------------------------------------------- /demo/collateral/Faber-Agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/Faber-Agent.png -------------------------------------------------------------------------------- /demo/collateral/P-3-Faber-Proof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/P-3-Faber-Proof-1.png -------------------------------------------------------------------------------- /demo/collateral/P-3-Faber-Proof-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/P-3-Faber-Proof-2.png -------------------------------------------------------------------------------- /demo/collateral/P-3-Faber-Proof-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/P-3-Faber-Proof-3.png -------------------------------------------------------------------------------- /demo/collateral/S-0-invitation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-0-invitation-1.png -------------------------------------------------------------------------------- /demo/collateral/S-0-invitation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-0-invitation-2.png -------------------------------------------------------------------------------- /demo/collateral/S-1-connect-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-1-connect-1.jpg -------------------------------------------------------------------------------- /demo/collateral/S-1-connect-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-1-connect-2.jpg -------------------------------------------------------------------------------- /demo/collateral/S-1-connect-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-1-connect-3.jpg -------------------------------------------------------------------------------- /demo/collateral/S-2-connect-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-2-connect-1.png -------------------------------------------------------------------------------- /demo/collateral/S-2-connect-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-2-connect-2.png -------------------------------------------------------------------------------- /demo/collateral/S-2-connect-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-2-connect-3.png -------------------------------------------------------------------------------- /demo/collateral/S-2-connect-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-2-connect-4.png -------------------------------------------------------------------------------- /demo/collateral/S-3-credential-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-3-credential-0.png -------------------------------------------------------------------------------- /demo/collateral/S-3-credential-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-3-credential-1.jpg -------------------------------------------------------------------------------- /demo/collateral/S-3-credential-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-3-credential-2.jpg -------------------------------------------------------------------------------- /demo/collateral/S-3-credential-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-3-credential-3.jpg -------------------------------------------------------------------------------- /demo/collateral/S-4-proof-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-4-proof-0.png -------------------------------------------------------------------------------- /demo/collateral/S-4-proof-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-4-proof-1.jpg -------------------------------------------------------------------------------- /demo/collateral/S-4-proof-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-4-proof-2.jpg -------------------------------------------------------------------------------- /demo/collateral/S-4-proof-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-4-proof-3.jpg -------------------------------------------------------------------------------- /demo/collateral/S-4-proof-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/S-4-proof-4.png -------------------------------------------------------------------------------- /demo/collateral/conn-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/conn-id.png -------------------------------------------------------------------------------- /demo/collateral/cred-def-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/cred-def-id.png -------------------------------------------------------------------------------- /demo/collateral/ios1-install-app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/ios1-install-app.jpg -------------------------------------------------------------------------------- /demo/collateral/ios2-create-agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/ios2-create-agent.jpg -------------------------------------------------------------------------------- /demo/collateral/ios3-enable-security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/ios3-enable-security.jpg -------------------------------------------------------------------------------- /demo/collateral/ios5-select-network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/ios5-select-network.jpg -------------------------------------------------------------------------------- /demo/collateral/issuer-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/issuer-did.png -------------------------------------------------------------------------------- /demo/collateral/revocation-2-ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/revocation-2-ledger.png -------------------------------------------------------------------------------- /demo/collateral/revocation-3-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/revocation-3-console.png -------------------------------------------------------------------------------- /demo/collateral/schema-name-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/collateral/schema-name-version.png -------------------------------------------------------------------------------- /demo/demo-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/demo-args.yaml -------------------------------------------------------------------------------- /demo/docker-agent/Dockerfile.acapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-agent/Dockerfile.acapy -------------------------------------------------------------------------------- /demo/docker-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-agent/README.md -------------------------------------------------------------------------------- /demo/docker-agent/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-agent/docker-compose.yml -------------------------------------------------------------------------------- /demo/docker-agent/ngrok-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-agent/ngrok-wait.sh -------------------------------------------------------------------------------- /demo/docker-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-test/README.md -------------------------------------------------------------------------------- /demo/docker-test/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker-test/db/Dockerfile -------------------------------------------------------------------------------- /demo/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker/docker-compose.yml -------------------------------------------------------------------------------- /demo/docker/ledgers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/docker/ledgers.yaml -------------------------------------------------------------------------------- /demo/elk-stack/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/.env.sample -------------------------------------------------------------------------------- /demo/elk-stack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/LICENSE -------------------------------------------------------------------------------- /demo/elk-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/README.md -------------------------------------------------------------------------------- /demo/elk-stack/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/docker-compose.yml -------------------------------------------------------------------------------- /demo/elk-stack/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /demo/elk-stack/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/extensions/README.md -------------------------------------------------------------------------------- /demo/elk-stack/kibana/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/kibana/.dockerignore -------------------------------------------------------------------------------- /demo/elk-stack/kibana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/kibana/Dockerfile -------------------------------------------------------------------------------- /demo/elk-stack/kibana/config/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/kibana/config/kibana.yml -------------------------------------------------------------------------------- /demo/elk-stack/logstash/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/logstash/.dockerignore -------------------------------------------------------------------------------- /demo/elk-stack/logstash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/logstash/Dockerfile -------------------------------------------------------------------------------- /demo/elk-stack/setup/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/setup/.dockerignore -------------------------------------------------------------------------------- /demo/elk-stack/setup/.gitignore: -------------------------------------------------------------------------------- 1 | /state/ 2 | -------------------------------------------------------------------------------- /demo/elk-stack/setup/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/setup/Dockerfile -------------------------------------------------------------------------------- /demo/elk-stack/setup/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/setup/entrypoint.sh -------------------------------------------------------------------------------- /demo/elk-stack/setup/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/elk-stack/setup/lib.sh -------------------------------------------------------------------------------- /demo/faber-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/faber-local.sh -------------------------------------------------------------------------------- /demo/features/0160-connection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/0160-connection.feature -------------------------------------------------------------------------------- /demo/features/0454-present-proof.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/0454-present-proof.feature -------------------------------------------------------------------------------- /demo/features/data/expires_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_time": "2021-03-29T05:22:19Z" 3 | } -------------------------------------------------------------------------------- /demo/features/data/schema_health_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/data/schema_health_id.json -------------------------------------------------------------------------------- /demo/features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/environment.py -------------------------------------------------------------------------------- /demo/features/revocation-api.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/revocation-api.feature -------------------------------------------------------------------------------- /demo/features/steps/0160-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/steps/0160-connection.py -------------------------------------------------------------------------------- /demo/features/steps/revocation-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/steps/revocation-api.py -------------------------------------------------------------------------------- /demo/features/steps/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/steps/upgrade.py -------------------------------------------------------------------------------- /demo/features/upgrade.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/features/upgrade.feature -------------------------------------------------------------------------------- /demo/local-genesis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/local-genesis.txt -------------------------------------------------------------------------------- /demo/local-indy-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/local-indy-args.yaml -------------------------------------------------------------------------------- /demo/multi-demo/Dockerfile.acapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi-demo/Dockerfile.acapy -------------------------------------------------------------------------------- /demo/multi-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi-demo/README.md -------------------------------------------------------------------------------- /demo/multi-demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi-demo/docker-compose.yml -------------------------------------------------------------------------------- /demo/multi-demo/max_conns.sql: -------------------------------------------------------------------------------- 1 | ALTER SYSTEM SET max_connections = 500; -------------------------------------------------------------------------------- /demo/multi-demo/ngrok-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi-demo/ngrok-wait.sh -------------------------------------------------------------------------------- /demo/multi_ledger_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi_ledger_config.yml -------------------------------------------------------------------------------- /demo/multi_ledger_config_bdd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/multi_ledger_config_bdd.yml -------------------------------------------------------------------------------- /demo/ngrok-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/ngrok-wait.sh -------------------------------------------------------------------------------- /demo/playground/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/.env.sample -------------------------------------------------------------------------------- /demo/playground/Dockerfile.acapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/Dockerfile.acapy -------------------------------------------------------------------------------- /demo/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/README.md -------------------------------------------------------------------------------- /demo/playground/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/docker-compose.yml -------------------------------------------------------------------------------- /demo/playground/examples/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/examples/poetry.lock -------------------------------------------------------------------------------- /demo/playground/examples/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/examples/pyproject.toml -------------------------------------------------------------------------------- /demo/playground/max_conns.sql: -------------------------------------------------------------------------------- 1 | ALTER SYSTEM SET max_connections = 500; -------------------------------------------------------------------------------- /demo/playground/ngrok-acme-multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/ngrok-acme-multi.yml -------------------------------------------------------------------------------- /demo/playground/ngrok-faber-alice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/ngrok-faber-alice.yml -------------------------------------------------------------------------------- /demo/playground/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/playground/start.sh -------------------------------------------------------------------------------- /demo/postgres-indy-args.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/postgres-indy-args.yml -------------------------------------------------------------------------------- /demo/postman/collections/vc-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/postman/collections/vc-api.json -------------------------------------------------------------------------------- /demo/postman/environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/postman/environment.json -------------------------------------------------------------------------------- /demo/postman/vc-api.collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/postman/vc-api.collection.json -------------------------------------------------------------------------------- /demo/requirements.behave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/requirements.behave.txt -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/requirements.txt -------------------------------------------------------------------------------- /demo/run_bdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/run_bdd -------------------------------------------------------------------------------- /demo/run_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/run_demo -------------------------------------------------------------------------------- /demo/runners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/runners/acme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/acme.py -------------------------------------------------------------------------------- /demo/runners/agent_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/agent_container.py -------------------------------------------------------------------------------- /demo/runners/alice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/alice.py -------------------------------------------------------------------------------- /demo/runners/faber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/faber.py -------------------------------------------------------------------------------- /demo/runners/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/performance.py -------------------------------------------------------------------------------- /demo/runners/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/runners/support/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/support/agent.py -------------------------------------------------------------------------------- /demo/runners/support/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/demo/runners/support/utils.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.bdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile.bdd -------------------------------------------------------------------------------- /docker/Dockerfile.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile.demo -------------------------------------------------------------------------------- /docker/Dockerfile.fixpermissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile.fixpermissions -------------------------------------------------------------------------------- /docker/Dockerfile.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile.run -------------------------------------------------------------------------------- /docker/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/Dockerfile.test -------------------------------------------------------------------------------- /docker/manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docker/manage -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/UpdateRTD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/UpdateRTD.md -------------------------------------------------------------------------------- /docs/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/README.md -------------------------------------------------------------------------------- /docs/assets/adminApi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/adminApi.png -------------------------------------------------------------------------------- /docs/assets/adminApiAuthentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/adminApiAuthentication.png -------------------------------------------------------------------------------- /docs/assets/aries-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/aries-favicon.png -------------------------------------------------------------------------------- /docs/assets/deploymentModel-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/deploymentModel-agent.png -------------------------------------------------------------------------------- /docs/assets/deploymentModel-agent.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/deploymentModel-agent.puml -------------------------------------------------------------------------------- /docs/assets/deploymentModel-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/deploymentModel-full.png -------------------------------------------------------------------------------- /docs/assets/deploymentModel-full.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/deploymentModel-full.puml -------------------------------------------------------------------------------- /docs/assets/endorse-cred-def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorse-cred-def.png -------------------------------------------------------------------------------- /docs/assets/endorse-cred-def.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorse-cred-def.puml -------------------------------------------------------------------------------- /docs/assets/endorse-public-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorse-public-did.png -------------------------------------------------------------------------------- /docs/assets/endorse-public-did.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorse-public-did.puml -------------------------------------------------------------------------------- /docs/assets/endorser-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorser-design.png -------------------------------------------------------------------------------- /docs/assets/endorser-design.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/endorser-design.puml -------------------------------------------------------------------------------- /docs/assets/genPlantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/genPlantuml -------------------------------------------------------------------------------- /docs/assets/inbound-messaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/inbound-messaging.png -------------------------------------------------------------------------------- /docs/assets/inbound-messaging.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/inbound-messaging.puml -------------------------------------------------------------------------------- /docs/assets/mediation-message-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/mediation-message-flow.png -------------------------------------------------------------------------------- /docs/assets/mediation-message-flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/mediation-message-flow.puml -------------------------------------------------------------------------------- /docs/assets/multitenancyDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/assets/multitenancyDiagram.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/demo/ACA-Py-Workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/ACA-Py-Workshop.md -------------------------------------------------------------------------------- /docs/demo/AcmeDemoWorkshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/AcmeDemoWorkshop.md -------------------------------------------------------------------------------- /docs/demo/AliceGetsAPhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/AliceGetsAPhone.md -------------------------------------------------------------------------------- /docs/demo/AliceWantsAJsonCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/AliceWantsAJsonCredential.md -------------------------------------------------------------------------------- /docs/demo/Endorser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/Endorser.md -------------------------------------------------------------------------------- /docs/demo/OpenAPIDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/OpenAPIDemo.md -------------------------------------------------------------------------------- /docs/demo/PostmanDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/PostmanDemo.md -------------------------------------------------------------------------------- /docs/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/README.md -------------------------------------------------------------------------------- /docs/demo/ReusingAConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/ReusingAConnection.md -------------------------------------------------------------------------------- /docs/demo/collateral/Alice-Agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/Alice-Agent.png -------------------------------------------------------------------------------- /docs/demo/collateral/Faber-Agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/Faber-Agent.png -------------------------------------------------------------------------------- /docs/demo/collateral/S-1-connect-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-1-connect-1.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-1-connect-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-1-connect-2.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-1-connect-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-1-connect-3.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-2-connect-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-2-connect-1.png -------------------------------------------------------------------------------- /docs/demo/collateral/S-4-proof-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-4-proof-0.png -------------------------------------------------------------------------------- /docs/demo/collateral/S-4-proof-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-4-proof-1.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-4-proof-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-4-proof-2.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-4-proof-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-4-proof-3.jpg -------------------------------------------------------------------------------- /docs/demo/collateral/S-4-proof-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/S-4-proof-4.png -------------------------------------------------------------------------------- /docs/demo/collateral/conn-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/conn-id.png -------------------------------------------------------------------------------- /docs/demo/collateral/cred-def-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/cred-def-id.png -------------------------------------------------------------------------------- /docs/demo/collateral/issuer-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/demo/collateral/issuer-did.png -------------------------------------------------------------------------------- /docs/deploying/AnonCredsWalletType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/AnonCredsWalletType.md -------------------------------------------------------------------------------- /docs/deploying/BBSSignatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/BBSSignatures.md -------------------------------------------------------------------------------- /docs/deploying/Databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/Databases.md -------------------------------------------------------------------------------- /docs/deploying/Poetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/Poetry.md -------------------------------------------------------------------------------- /docs/deploying/RedisPlugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/RedisPlugins.md -------------------------------------------------------------------------------- /docs/deploying/UpgradingACA-Py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/UpgradingACA-Py.md -------------------------------------------------------------------------------- /docs/deploying/deploymentModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/deploying/deploymentModel.md -------------------------------------------------------------------------------- /docs/design/DIDManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/design/DIDManagement.md -------------------------------------------------------------------------------- /docs/design/UpgradeViaApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/design/UpgradeViaApi.md -------------------------------------------------------------------------------- /docs/features/AdminAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/AdminAPI.md -------------------------------------------------------------------------------- /docs/features/AnonCredsMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/AnonCredsMethods.md -------------------------------------------------------------------------------- /docs/features/DIDMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/DIDMethods.md -------------------------------------------------------------------------------- /docs/features/DIDResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/DIDResolution.md -------------------------------------------------------------------------------- /docs/features/DevReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/DevReadMe.md -------------------------------------------------------------------------------- /docs/features/Endorser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/Endorser.md -------------------------------------------------------------------------------- /docs/features/JsonLdCredentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/JsonLdCredentials.md -------------------------------------------------------------------------------- /docs/features/KanonStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/KanonStorage.md -------------------------------------------------------------------------------- /docs/features/Mediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/Mediation.md -------------------------------------------------------------------------------- /docs/features/Multicredentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/Multicredentials.md -------------------------------------------------------------------------------- /docs/features/Multiledger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/Multiledger.md -------------------------------------------------------------------------------- /docs/features/Multitenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/Multitenancy.md -------------------------------------------------------------------------------- /docs/features/PlugIns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/PlugIns.md -------------------------------------------------------------------------------- /docs/features/QualifiedDIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/QualifiedDIDs.md -------------------------------------------------------------------------------- /docs/features/ReuseConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/ReuseConnection.md -------------------------------------------------------------------------------- /docs/features/SupportedRFCs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/SupportedRFCs.md -------------------------------------------------------------------------------- /docs/features/UsingOpenAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/UsingOpenAPI.md -------------------------------------------------------------------------------- /docs/features/W3cCredentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/W3cCredentials.md -------------------------------------------------------------------------------- /docs/features/devcontainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/features/devcontainer.md -------------------------------------------------------------------------------- /docs/generated/acapy_agent.admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.admin.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.askar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.askar.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.cache.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.config.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.core.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.did.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.did.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.holder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.holder.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.indy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.indy.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.kanon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.kanon.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.ledger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.ledger.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.tails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.tails.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.utils.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.vc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.vc.rst -------------------------------------------------------------------------------- /docs/generated/acapy_agent.wallet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/acapy_agent.wallet.rst -------------------------------------------------------------------------------- /docs/generated/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/generated/modules.rst -------------------------------------------------------------------------------- /docs/gettingStarted/ACA-PyBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/gettingStarted/ACA-PyBasics.md -------------------------------------------------------------------------------- /docs/gettingStarted/ConnectIndyNetwork.md: -------------------------------------------------------------------------------- 1 | # Connecting to an Indy Network 2 | 3 | To be completed. 4 | -------------------------------------------------------------------------------- /docs/gettingStarted/DIDcommMsgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/gettingStarted/DIDcommMsgs.md -------------------------------------------------------------------------------- /docs/gettingStarted/IndyBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/gettingStarted/IndyBasics.md -------------------------------------------------------------------------------- /docs/gettingStarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/gettingStarted/README.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mkdocs-dockerfile.yml: -------------------------------------------------------------------------------- 1 | FROM squidfunk/mkdocs-material 2 | RUN pip install mike 3 | -------------------------------------------------------------------------------- /docs/readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/readthedocs.yaml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/testing/AgentTracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/AgentTracing.md -------------------------------------------------------------------------------- /docs/testing/BDDTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/BDDTests.md -------------------------------------------------------------------------------- /docs/testing/IntegrationTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/IntegrationTests.md -------------------------------------------------------------------------------- /docs/testing/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/Logging.md -------------------------------------------------------------------------------- /docs/testing/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/Troubleshooting.md -------------------------------------------------------------------------------- /docs/testing/UnitTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/docs/testing/UnitTests.md -------------------------------------------------------------------------------- /mkdocs-requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | mkdocs-material==9.7.0 3 | mike==2.1.3 4 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /open-api/openAPIJSON.config: -------------------------------------------------------------------------------- 1 | { 2 | "validateSpec" : "false" 3 | } 4 | -------------------------------------------------------------------------------- /open-api/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/open-api/openapi.json -------------------------------------------------------------------------------- /open-api/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/open-api/swagger.json -------------------------------------------------------------------------------- /overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/overrides/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scenarios/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/Dockerfile -------------------------------------------------------------------------------- /scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/README.md -------------------------------------------------------------------------------- /scenarios/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/conftest.py -------------------------------------------------------------------------------- /scenarios/examples/json_ld/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/examples/json_ld/example.py -------------------------------------------------------------------------------- /scenarios/examples/simple/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/examples/simple/example.py -------------------------------------------------------------------------------- /scenarios/examples/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/examples/util.py -------------------------------------------------------------------------------- /scenarios/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/poetry.lock -------------------------------------------------------------------------------- /scenarios/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scenarios/pyproject.toml -------------------------------------------------------------------------------- /scripts/genChangeLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/genChangeLog.sh -------------------------------------------------------------------------------- /scripts/generate-open-api-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/generate-open-api-spec -------------------------------------------------------------------------------- /scripts/prepmkdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/prepmkdocs.sh -------------------------------------------------------------------------------- /scripts/run_docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/run_docker -------------------------------------------------------------------------------- /scripts/run_postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/run_postgres -------------------------------------------------------------------------------- /scripts/run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/scripts/run_tests -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/acapy/HEAD/sonar-project.properties --------------------------------------------------------------------------------