├── .coveragerc ├── .gitignore ├── .gitreview ├── .mailmap ├── .stestr.conf ├── .zuul.yaml ├── HACKING.rst ├── LICENSE ├── README.rst ├── api-guide └── source │ ├── acls.rst │ ├── conf.py │ ├── consumers.rst │ ├── containers.rst │ ├── index.rst │ ├── orders.rst │ ├── quotas.rst │ ├── secret_metadata.rst │ └── secrets.rst ├── barbican ├── __init__.py ├── api │ ├── __init__.py │ ├── app.py │ ├── app.wsgi │ ├── controllers │ │ ├── __init__.py │ │ ├── acls.py │ │ ├── consumers.py │ │ ├── containers.py │ │ ├── orders.py │ │ ├── quotas.py │ │ ├── secretmeta.py │ │ ├── secrets.py │ │ ├── secretstores.py │ │ ├── transportkeys.py │ │ └── versions.py │ ├── hooks.py │ └── middleware │ │ ├── __init__.py │ │ ├── context.py │ │ ├── microversion.py │ │ └── simple.py ├── cmd │ ├── __init__.py │ ├── barbican_manage.py │ ├── db_manage.py │ ├── functionaltests │ │ ├── .testr.conf │ │ ├── __init__.py │ │ └── test_db_manage.py │ ├── kek_rewrap.py │ ├── keystone_listener.py │ ├── pkcs11_kek_rewrap.py │ ├── pkcs11_key_generation.py │ ├── pkcs11_migrate_kek_signatures.py │ ├── retry_scheduler.py │ ├── simple_crypto.py │ ├── status.py │ └── worker.py ├── common │ ├── __init__.py │ ├── accept.py │ ├── config.py │ ├── exception.py │ ├── hrefs.py │ ├── policies │ │ ├── __init__.py │ │ ├── acls.py │ │ ├── base.py │ │ ├── consumers.py │ │ ├── containers.py │ │ ├── orders.py │ │ ├── quotas.py │ │ ├── secretmeta.py │ │ ├── secrets.py │ │ ├── secretstores.py │ │ └── transportkeys.py │ ├── policy.py │ ├── quota.py │ ├── resources.py │ ├── utils.py │ └── validators.py ├── context.py ├── hacking │ ├── __init__.py │ └── checks.py ├── i18n.py ├── locale │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── barbican.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── barbican.po ├── model │ ├── __init__.py │ ├── clean.py │ ├── migration │ │ ├── __init__.py │ │ ├── alembic.ini │ │ ├── alembic_migrations │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── container_init_ops.py │ │ │ ├── encrypted_init_ops.py │ │ │ ├── env.py │ │ │ ├── kek_init_ops.py │ │ │ ├── order_ops.py │ │ │ ├── projects_init_ops.py │ │ │ ├── script.py.mako │ │ │ ├── secrets_init_ops.py │ │ │ ├── transport_keys_init_ops.py │ │ │ └── versions │ │ │ │ ├── 0f8c192a061f_add_secret_consumers.py │ │ │ │ ├── 39cf2e645cba_ocata_rebase.py │ │ │ │ └── 8c74e2d7f1ff_update_secret_consumers_unique_.py │ │ └── commands.py │ ├── models.py │ ├── repositories.py │ └── sync.py ├── objects │ ├── __init__.py │ ├── base.py │ ├── container.py │ ├── container_acl.py │ ├── container_acl_user.py │ ├── container_consumer_meta.py │ ├── container_secret.py │ ├── encrypted_datum.py │ ├── fields.py │ ├── kekdatum.py │ ├── order.py │ ├── order_barbican_metadatum.py │ ├── order_plugin_metadatum.py │ ├── order_retry_task.py │ ├── project.py │ ├── project_quotas.py │ ├── project_secret_store.py │ ├── secret.py │ ├── secret_acl.py │ ├── secret_acl_user.py │ ├── secret_consumer_metadatum.py │ ├── secret_store_metadatum.py │ ├── secret_stores.py │ ├── secret_user_metadatum.py │ └── transport_key.py ├── plugin │ ├── __init__.py │ ├── castellan_secret_store.py │ ├── crypto │ │ ├── __init__.py │ │ ├── base.py │ │ ├── manager.py │ │ ├── p11_crypto.py │ │ ├── pkcs11.py │ │ └── simple_crypto.py │ ├── dogtag.py │ ├── dogtag_config_opts.py │ ├── interface │ │ ├── __init__.py │ │ └── secret_store.py │ ├── kmip_secret_store.py │ ├── resources.py │ ├── store_crypto.py │ ├── util │ │ ├── __init__.py │ │ ├── mime_types.py │ │ ├── multiple_backends.py │ │ ├── translations.py │ │ └── utils.py │ └── vault_secret_store.py ├── queue │ ├── __init__.py │ ├── client.py │ ├── keystone_listener.py │ ├── retry_scheduler.py │ └── server.py ├── tasks │ ├── __init__.py │ ├── common.py │ ├── keystone_consumer.py │ └── resources.py ├── tests │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── test_acls.py │ │ │ ├── test_consumers.py │ │ │ ├── test_containers.py │ │ │ ├── test_orders.py │ │ │ ├── test_quotas.py │ │ │ ├── test_secretmeta.py │ │ │ ├── test_secrets.py │ │ │ ├── test_secretstores.py │ │ │ └── test_versions.py │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── test_context.py │ │ │ └── test_simple.py │ │ ├── test_init.py │ │ ├── test_resources.py │ │ ├── test_resources_policy.py │ │ └── test_transport_keys_resource.py │ ├── cmd │ │ ├── __init__.py │ │ ├── test-status.py │ │ ├── test_barbican_manage.py │ │ ├── test_cmd.py │ │ └── test_db_cleanup.py │ ├── common │ │ ├── __init__.py │ │ ├── test_hrefs.py │ │ ├── test_quota.py │ │ ├── test_utils.py │ │ └── test_validators.py │ ├── database_utils.py │ ├── fixture.py │ ├── keys.py │ ├── model │ │ ├── __init__.py │ │ ├── repositories │ │ │ ├── __init__.py │ │ │ ├── test_repositories.py │ │ │ ├── test_repositories_acls.py │ │ │ ├── test_repositories_certificate_authorities.py │ │ │ ├── test_repositories_consumers.py │ │ │ ├── test_repositories_containers.py │ │ │ ├── test_repositories_order_retry_tasks.py │ │ │ ├── test_repositories_orders.py │ │ │ ├── test_repositories_projects.py │ │ │ ├── test_repositories_quotas.py │ │ │ ├── test_repositories_secret_consumers.py │ │ │ ├── test_repositories_secret_metadata.py │ │ │ ├── test_repositories_secret_stores.py │ │ │ ├── test_repositories_secrets.py │ │ │ └── test_repositories_transport_keys.py │ │ └── test_models.py │ ├── objects │ │ ├── __init__.py │ │ ├── test_ovo_base.py │ │ ├── test_ovo_project.py │ │ ├── test_ovo_project_quotas.py │ │ └── test_ovo_project_secret_store.py │ ├── plugin │ │ ├── __init__.py │ │ ├── crypto │ │ │ ├── __init__.py │ │ │ ├── test_crypto.py │ │ │ ├── test_manager.py │ │ │ ├── test_p11_crypto.py │ │ │ └── test_pkcs11.py │ │ ├── interface │ │ │ ├── __init__.py │ │ │ └── test_secret_store.py │ │ ├── test_castellan_secret_store.py │ │ ├── test_dogtag.py │ │ ├── test_kmip.py │ │ ├── test_resource.py │ │ ├── test_store_crypto.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── test_mime_types.py │ │ │ ├── test_multiple_backends.py │ │ │ ├── test_translations.py │ │ │ └── test_utils.py │ ├── queue │ │ ├── __init__.py │ │ ├── test_client.py │ │ ├── test_keystone_listener.py │ │ ├── test_retry_scheduler.py │ │ └── test_server.py │ ├── tasks │ │ ├── __init__.py │ │ ├── test_common.py │ │ ├── test_keystone_consumer.py │ │ └── test_resources.py │ ├── test_hacking.py │ ├── test_middleware_auth.py │ └── utils.py ├── version.py └── wsgi │ ├── __init__.py │ └── api.py ├── bin ├── barbican-api ├── barbican.sh ├── demo_requests.py └── keystone_data.sh ├── bindep.txt ├── devstack ├── README.md ├── gate_hook.sh ├── lib │ ├── barbican │ └── tempest ├── local.conf.example ├── plugin.sh ├── settings └── upgrade │ ├── resources.sh │ ├── settings │ ├── shutdown.sh │ └── upgrade.sh ├── doc ├── requirements.txt └── source │ ├── _extra │ └── .htaccess │ ├── _static │ └── .placeholder │ ├── admin │ ├── access_control.rst │ ├── barbican_manage.rst │ ├── database_cleaning.rst │ ├── index.rst │ ├── pkcs11keygeneration.rst │ └── upgrade.rst │ ├── api │ ├── index.rst │ ├── microversion_history.rst │ ├── microversions.rst │ └── reference │ │ ├── acls.rst │ │ ├── container_consumers.rst │ │ ├── containers.rst │ │ ├── orders.rst │ │ ├── quotas.rst │ │ ├── secret_consumers.rst │ │ ├── secret_metadata.rst │ │ ├── secret_types.rst │ │ ├── secrets.rst │ │ └── store_backends.rst │ ├── cli │ ├── barbican-status.rst │ └── index.rst │ ├── conf.py │ ├── configuration │ ├── audit.rst │ ├── config.rst │ ├── dogtag_setup.rst │ ├── index.rst │ ├── keystone.rst │ ├── noauth.rst │ ├── plugin_backends.rst │ ├── policy.rst │ └── troubleshooting.rst │ ├── contributor │ ├── architecture.rst │ ├── contributing.rst │ ├── database_migrations.rst │ ├── dataflow.rst │ ├── dependencies.rst │ ├── dev.rst │ ├── devstack.rst │ ├── getting_involved.rst │ ├── index.rst │ ├── microversions.rst │ ├── plugin │ │ ├── crypto.rst │ │ ├── index.rst │ │ └── secret_store.rst │ ├── structure.rst │ └── testing.rst │ ├── images │ ├── barbican-components.png │ ├── barbican-overall-architecture.png │ └── mascot.png │ ├── index.rst │ ├── install │ ├── barbican-backend.rst │ ├── common_configure.rst │ ├── common_prerequisites.rst │ ├── get_started.rst │ ├── index.rst │ ├── install-rdo.rst │ ├── install-ubuntu.rst │ ├── install.rst │ ├── next-steps.rst │ └── verify.rst │ ├── sample_config.rst │ └── sample_policy.rst ├── etc ├── barbican │ ├── README.barbican.conf.txt │ ├── api_audit_map.conf │ ├── barbican-api-paste.ini │ ├── barbican-functional.conf │ └── vassals │ │ └── barbican-api.ini ├── init │ ├── barbican-keystone-listener.conf │ ├── barbican-worker.conf │ └── barbican.conf ├── logrotate.d │ └── barbican-api └── oslo-config-generator │ ├── barbican.conf │ └── policy.conf ├── functionaltests ├── .coveragerc ├── .testr.conf ├── __init__.py ├── api │ ├── __init__.py │ ├── base.py │ └── v1 │ │ ├── __init__.py │ │ ├── behaviors │ │ ├── __init__.py │ │ ├── acl_behaviors.py │ │ ├── base_behaviors.py │ │ ├── consumer_behaviors.py │ │ ├── container_behaviors.py │ │ ├── order_behaviors.py │ │ ├── quota_behaviors.py │ │ ├── secret_behaviors.py │ │ ├── secretmeta_behaviors.py │ │ └── secretstores_behaviors.py │ │ ├── functional │ │ ├── __init__.py │ │ ├── test_acls.py │ │ ├── test_acls_rbac.py │ │ ├── test_consumers.py │ │ ├── test_containers.py │ │ ├── test_containers_rbac.py │ │ ├── test_orders.py │ │ ├── test_orders_rbac.py │ │ ├── test_quotas.py │ │ ├── test_quotas_enforce.py │ │ ├── test_quotas_rbac.py │ │ ├── test_rsa.py │ │ ├── test_secretmeta.py │ │ ├── test_secrets.py │ │ ├── test_secrets_rbac.py │ │ └── test_secretstores.py │ │ ├── models │ │ ├── __init__.py │ │ ├── acl_models.py │ │ ├── base_models.py │ │ ├── ca_models.py │ │ ├── consumer_model.py │ │ ├── container_models.py │ │ ├── order_models.py │ │ ├── quota_models.py │ │ └── secret_models.py │ │ └── smoke │ │ ├── __init__.py │ │ ├── test_consumers.py │ │ ├── test_containers.py │ │ ├── test_orders.py │ │ ├── test_secrets.py │ │ └── test_versions.py ├── common │ ├── __init__.py │ ├── auth.py │ ├── client.py │ └── config.py ├── post_test_hook.sh ├── run_tests.sh └── run_tests_parallel.sh ├── playbooks ├── enable-fips.yaml └── legacy │ ├── barbican-devstack-base │ ├── post.yaml │ └── run.yaml │ ├── barbican-devstack-functional-base │ ├── dogtag-post.yaml │ ├── post.yaml │ └── run.yaml │ └── grenade-devstack-barbican │ ├── post.yaml │ └── run.yaml ├── pyproject.toml ├── releasenotes ├── notes │ ├── .placeholder │ ├── add-barbican-manage-check-subcommands-38835078f5cc0ce2.yaml │ ├── add-configurable-mechanism-options-2e5c57099b4c91b1.yaml │ ├── add-new-pkcs11-options-fc7bb625998e91fc.yaml │ ├── add-os-locking-ok-option-d0cfc5883355632a.yaml │ ├── add-simple-crypto-new-pkek-95b5d970cd85a6dd.yaml │ ├── add-simple-crypto-secret-rewrap-48651f4c5440529e.yaml │ ├── allow-aes-xts-512-bitlength-in-simple-crypto-95936a2d830035cc.yaml │ ├── allow-multiple-pkcs11-token-labels-61b63e34b7c8cc1a.yaml │ ├── barbican-manage-d469b4d15454f981.yaml │ ├── barbican-status-upgrade-check-framework-9df56289b1d91ba4.yaml │ ├── change_default_control_exchange-c47abc3e3f08aa31.yaml │ ├── deprecate-json-formatted-policy-file-b135aa7551e81066.yaml │ ├── deprecate-sql_pool_class-4596e157c2d5e9e7.yaml │ ├── drop-py-2-7-f745ea90b33c7910.yaml │ ├── fix-bug-2036506-bf171b5949495457.yaml │ ├── fix-double-slash-hrefs-f6162ed7494dd0b4.yaml │ ├── fix-story-2004734-977dbeda6b547f85.yaml │ ├── fix-story-2004833-2b420688a82c3328.yaml │ ├── fix-story-2006978-aa5f2r9cqpfa0tm8.yaml │ ├── fix-story-2008335-a253190d0fa799a0.yaml │ ├── fix-story-2008649-reinitialize-pkcs11-object-4c0dc51c83288c21.yaml │ ├── fix-story-2009247-18faf4f2b570dfc0.yaml │ ├── fix-story-2009664-042ef282c0dd6b6a.yaml │ ├── fix-story-2009672-d64ef6c10444f517.yaml │ ├── fix-story-2009791-allow-creator-delete-06dd3eb670d0e624.yaml │ ├── fix-story-2010258-053ee02fe46b9984.yaml │ ├── fixed-invalid-route-response-code-15a681d07222a4f7.yaml │ ├── fixed-mysql-migrations-23221671ba17ea5e.yaml │ ├── http_proxy_to_wsgi-middleware-98dc4fe03eb362d3.yaml │ ├── increase-max-secret-size-da90164d8b328727.yaml │ ├── keystone-listener-pooling-a4fb0dde9e25a21f.yaml │ ├── metadata-api-e95d4559e7bf9ca9.yaml │ ├── multiple-backends-75f5b85c63b930b7.yaml │ ├── oslo-db-9381293cc7bedc7d.yaml │ ├── oslopolicy-genscripts-1a7b364b8ffd7c3f.yaml │ ├── pkcs11-backend-performance-f3caacbe9e1ab535.yaml │ ├── pkcs11-remove-alrogithm-5ffcccc5197b236a.yaml │ ├── port-ruledefaults-to-documentedruledefaults-954fe88af9fe72ed.yaml │ ├── remap-policy-to-match-controller-1673ec7c88235227.yaml │ ├── remove-certificate-order-df76100cfd1360ef.yaml │ ├── remove-certificate-resources-cdb4708332436144.yaml │ ├── remove-pkcs11-token-label-69d4368906b91b7e.yaml │ ├── remove-py38-ecd3b5c9b6799e75.yaml │ ├── remove-system-scope-from-policy-f2f68c42c0742812.yaml │ ├── remove_pkix-b045e7dde7e47356.yaml │ ├── removing-cas-certificate-orders-96fc47a7acaea273.yaml │ ├── rename-db-opts-547a9114abde2e88.yaml │ ├── renamed-generate-iv-option-29770cfcff8e3b83.yaml │ ├── secret-consumers-microversions-changes-5aacdad5b7c776a3.yaml │ ├── secure-rbac-acl-policy-b534614ee7190108.yaml │ ├── secure-rbac-consumer-policy-5ff67280dc2a2c09.yaml │ ├── secure-rbac-container-policy-f7814e65dc2ab130.yaml │ ├── secure-rbac-order-policy-2068c64cb6830c6c.yaml │ ├── secure-rbac-quotas-policy-f725a2752d1ba3f4.yaml │ ├── secure-rbac-secretmeta-policy-587cdad4e2ecee3a.yaml │ ├── secure-rbac-secrets-policy-61d49439a043f865.yaml │ ├── secure-rbac-secretstore-policy-ffa782850082add8.yaml │ ├── secure-rbac-transportkey-policy-3e904787694f8471.yaml │ ├── simple-crypto-kek-rotation-b8fe76b32aa76190.yaml │ ├── simple-crypto-multiple-kek-939d7fae5657ca8e.yaml │ ├── update-autodbcreate-default-31b5a86063b91444.yaml │ ├── use-barbican-conf-in-barbican-manage-52035c1cdbfc5a26.yaml │ ├── use-secure-rbac-by-default-bae44e5c36451928.yaml │ └── use_oslo_config_generator-f2a9be9e71d90b1f.yaml └── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── liberty.rst │ ├── locale │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── releasenotes.po │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/.gitreview -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/.mailmap -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | test_path=${OS_TEST_PATH:-./barbican/tests/} 3 | top_dir=./ 4 | 5 | -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/README.rst -------------------------------------------------------------------------------- /api-guide/source/acls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/acls.rst -------------------------------------------------------------------------------- /api-guide/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/conf.py -------------------------------------------------------------------------------- /api-guide/source/consumers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/consumers.rst -------------------------------------------------------------------------------- /api-guide/source/containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/containers.rst -------------------------------------------------------------------------------- /api-guide/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/index.rst -------------------------------------------------------------------------------- /api-guide/source/orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/orders.rst -------------------------------------------------------------------------------- /api-guide/source/quotas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/quotas.rst -------------------------------------------------------------------------------- /api-guide/source/secret_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/secret_metadata.rst -------------------------------------------------------------------------------- /api-guide/source/secrets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/api-guide/source/secrets.rst -------------------------------------------------------------------------------- /barbican/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/__init__.py -------------------------------------------------------------------------------- /barbican/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/app.py -------------------------------------------------------------------------------- /barbican/api/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/app.wsgi -------------------------------------------------------------------------------- /barbican/api/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/__init__.py -------------------------------------------------------------------------------- /barbican/api/controllers/acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/acls.py -------------------------------------------------------------------------------- /barbican/api/controllers/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/consumers.py -------------------------------------------------------------------------------- /barbican/api/controllers/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/containers.py -------------------------------------------------------------------------------- /barbican/api/controllers/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/orders.py -------------------------------------------------------------------------------- /barbican/api/controllers/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/quotas.py -------------------------------------------------------------------------------- /barbican/api/controllers/secretmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/secretmeta.py -------------------------------------------------------------------------------- /barbican/api/controllers/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/secrets.py -------------------------------------------------------------------------------- /barbican/api/controllers/secretstores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/secretstores.py -------------------------------------------------------------------------------- /barbican/api/controllers/transportkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/transportkeys.py -------------------------------------------------------------------------------- /barbican/api/controllers/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/controllers/versions.py -------------------------------------------------------------------------------- /barbican/api/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/hooks.py -------------------------------------------------------------------------------- /barbican/api/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/middleware/__init__.py -------------------------------------------------------------------------------- /barbican/api/middleware/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/middleware/context.py -------------------------------------------------------------------------------- /barbican/api/middleware/microversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/middleware/microversion.py -------------------------------------------------------------------------------- /barbican/api/middleware/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/api/middleware/simple.py -------------------------------------------------------------------------------- /barbican/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/cmd/barbican_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/barbican_manage.py -------------------------------------------------------------------------------- /barbican/cmd/db_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/db_manage.py -------------------------------------------------------------------------------- /barbican/cmd/functionaltests/.testr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/functionaltests/.testr.conf -------------------------------------------------------------------------------- /barbican/cmd/functionaltests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/cmd/functionaltests/test_db_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/functionaltests/test_db_manage.py -------------------------------------------------------------------------------- /barbican/cmd/kek_rewrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/kek_rewrap.py -------------------------------------------------------------------------------- /barbican/cmd/keystone_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/keystone_listener.py -------------------------------------------------------------------------------- /barbican/cmd/pkcs11_kek_rewrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/pkcs11_kek_rewrap.py -------------------------------------------------------------------------------- /barbican/cmd/pkcs11_key_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/pkcs11_key_generation.py -------------------------------------------------------------------------------- /barbican/cmd/pkcs11_migrate_kek_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/pkcs11_migrate_kek_signatures.py -------------------------------------------------------------------------------- /barbican/cmd/retry_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/retry_scheduler.py -------------------------------------------------------------------------------- /barbican/cmd/simple_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/simple_crypto.py -------------------------------------------------------------------------------- /barbican/cmd/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/status.py -------------------------------------------------------------------------------- /barbican/cmd/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/cmd/worker.py -------------------------------------------------------------------------------- /barbican/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/common/accept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/accept.py -------------------------------------------------------------------------------- /barbican/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/config.py -------------------------------------------------------------------------------- /barbican/common/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/exception.py -------------------------------------------------------------------------------- /barbican/common/hrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/hrefs.py -------------------------------------------------------------------------------- /barbican/common/policies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/__init__.py -------------------------------------------------------------------------------- /barbican/common/policies/acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/acls.py -------------------------------------------------------------------------------- /barbican/common/policies/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/base.py -------------------------------------------------------------------------------- /barbican/common/policies/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/consumers.py -------------------------------------------------------------------------------- /barbican/common/policies/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/containers.py -------------------------------------------------------------------------------- /barbican/common/policies/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/orders.py -------------------------------------------------------------------------------- /barbican/common/policies/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/quotas.py -------------------------------------------------------------------------------- /barbican/common/policies/secretmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/secretmeta.py -------------------------------------------------------------------------------- /barbican/common/policies/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/secrets.py -------------------------------------------------------------------------------- /barbican/common/policies/secretstores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/secretstores.py -------------------------------------------------------------------------------- /barbican/common/policies/transportkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policies/transportkeys.py -------------------------------------------------------------------------------- /barbican/common/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/policy.py -------------------------------------------------------------------------------- /barbican/common/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/quota.py -------------------------------------------------------------------------------- /barbican/common/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/resources.py -------------------------------------------------------------------------------- /barbican/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/utils.py -------------------------------------------------------------------------------- /barbican/common/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/common/validators.py -------------------------------------------------------------------------------- /barbican/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/context.py -------------------------------------------------------------------------------- /barbican/hacking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/hacking/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/hacking/checks.py -------------------------------------------------------------------------------- /barbican/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/i18n.py -------------------------------------------------------------------------------- /barbican/locale/en_GB/LC_MESSAGES/barbican.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/locale/en_GB/LC_MESSAGES/barbican.po -------------------------------------------------------------------------------- /barbican/locale/zh_CN/LC_MESSAGES/barbican.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/locale/zh_CN/LC_MESSAGES/barbican.po -------------------------------------------------------------------------------- /barbican/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/model/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/clean.py -------------------------------------------------------------------------------- /barbican/model/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/model/migration/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic.ini -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. 2 | -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/container_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/container_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/encrypted_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/encrypted_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/env.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/kek_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/kek_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/order_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/order_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/projects_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/projects_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/script.py.mako -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/secrets_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/secrets_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/transport_keys_init_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/transport_keys_init_ops.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/versions/0f8c192a061f_add_secret_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/versions/0f8c192a061f_add_secret_consumers.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/versions/39cf2e645cba_ocata_rebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/versions/39cf2e645cba_ocata_rebase.py -------------------------------------------------------------------------------- /barbican/model/migration/alembic_migrations/versions/8c74e2d7f1ff_update_secret_consumers_unique_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/alembic_migrations/versions/8c74e2d7f1ff_update_secret_consumers_unique_.py -------------------------------------------------------------------------------- /barbican/model/migration/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/migration/commands.py -------------------------------------------------------------------------------- /barbican/model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/models.py -------------------------------------------------------------------------------- /barbican/model/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/repositories.py -------------------------------------------------------------------------------- /barbican/model/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/model/sync.py -------------------------------------------------------------------------------- /barbican/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/__init__.py -------------------------------------------------------------------------------- /barbican/objects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/base.py -------------------------------------------------------------------------------- /barbican/objects/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/container.py -------------------------------------------------------------------------------- /barbican/objects/container_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/container_acl.py -------------------------------------------------------------------------------- /barbican/objects/container_acl_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/container_acl_user.py -------------------------------------------------------------------------------- /barbican/objects/container_consumer_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/container_consumer_meta.py -------------------------------------------------------------------------------- /barbican/objects/container_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/container_secret.py -------------------------------------------------------------------------------- /barbican/objects/encrypted_datum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/encrypted_datum.py -------------------------------------------------------------------------------- /barbican/objects/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/fields.py -------------------------------------------------------------------------------- /barbican/objects/kekdatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/kekdatum.py -------------------------------------------------------------------------------- /barbican/objects/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/order.py -------------------------------------------------------------------------------- /barbican/objects/order_barbican_metadatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/order_barbican_metadatum.py -------------------------------------------------------------------------------- /barbican/objects/order_plugin_metadatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/order_plugin_metadatum.py -------------------------------------------------------------------------------- /barbican/objects/order_retry_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/order_retry_task.py -------------------------------------------------------------------------------- /barbican/objects/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/project.py -------------------------------------------------------------------------------- /barbican/objects/project_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/project_quotas.py -------------------------------------------------------------------------------- /barbican/objects/project_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/project_secret_store.py -------------------------------------------------------------------------------- /barbican/objects/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret.py -------------------------------------------------------------------------------- /barbican/objects/secret_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_acl.py -------------------------------------------------------------------------------- /barbican/objects/secret_acl_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_acl_user.py -------------------------------------------------------------------------------- /barbican/objects/secret_consumer_metadatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_consumer_metadatum.py -------------------------------------------------------------------------------- /barbican/objects/secret_store_metadatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_store_metadatum.py -------------------------------------------------------------------------------- /barbican/objects/secret_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_stores.py -------------------------------------------------------------------------------- /barbican/objects/secret_user_metadatum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/secret_user_metadatum.py -------------------------------------------------------------------------------- /barbican/objects/transport_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/objects/transport_key.py -------------------------------------------------------------------------------- /barbican/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/plugin/castellan_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/castellan_secret_store.py -------------------------------------------------------------------------------- /barbican/plugin/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/plugin/crypto/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/crypto/base.py -------------------------------------------------------------------------------- /barbican/plugin/crypto/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/crypto/manager.py -------------------------------------------------------------------------------- /barbican/plugin/crypto/p11_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/crypto/p11_crypto.py -------------------------------------------------------------------------------- /barbican/plugin/crypto/pkcs11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/crypto/pkcs11.py -------------------------------------------------------------------------------- /barbican/plugin/crypto/simple_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/crypto/simple_crypto.py -------------------------------------------------------------------------------- /barbican/plugin/dogtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/dogtag.py -------------------------------------------------------------------------------- /barbican/plugin/dogtag_config_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/dogtag_config_opts.py -------------------------------------------------------------------------------- /barbican/plugin/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/plugin/interface/secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/interface/secret_store.py -------------------------------------------------------------------------------- /barbican/plugin/kmip_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/kmip_secret_store.py -------------------------------------------------------------------------------- /barbican/plugin/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/resources.py -------------------------------------------------------------------------------- /barbican/plugin/store_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/store_crypto.py -------------------------------------------------------------------------------- /barbican/plugin/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/plugin/util/mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/util/mime_types.py -------------------------------------------------------------------------------- /barbican/plugin/util/multiple_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/util/multiple_backends.py -------------------------------------------------------------------------------- /barbican/plugin/util/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/util/translations.py -------------------------------------------------------------------------------- /barbican/plugin/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/util/utils.py -------------------------------------------------------------------------------- /barbican/plugin/vault_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/plugin/vault_secret_store.py -------------------------------------------------------------------------------- /barbican/queue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/queue/__init__.py -------------------------------------------------------------------------------- /barbican/queue/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/queue/client.py -------------------------------------------------------------------------------- /barbican/queue/keystone_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/queue/keystone_listener.py -------------------------------------------------------------------------------- /barbican/queue/retry_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/queue/retry_scheduler.py -------------------------------------------------------------------------------- /barbican/queue/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/queue/server.py -------------------------------------------------------------------------------- /barbican/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tasks/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tasks/common.py -------------------------------------------------------------------------------- /barbican/tasks/keystone_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tasks/keystone_consumer.py -------------------------------------------------------------------------------- /barbican/tasks/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tasks/resources.py -------------------------------------------------------------------------------- /barbican/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_acls.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_consumers.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_containers.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_orders.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_quotas.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_secretmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_secretmeta.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_secrets.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_secretstores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_secretstores.py -------------------------------------------------------------------------------- /barbican/tests/api/controllers/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/controllers/test_versions.py -------------------------------------------------------------------------------- /barbican/tests/api/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/api/middleware/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/middleware/test_context.py -------------------------------------------------------------------------------- /barbican/tests/api/middleware/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/middleware/test_simple.py -------------------------------------------------------------------------------- /barbican/tests/api/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/test_init.py -------------------------------------------------------------------------------- /barbican/tests/api/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/test_resources.py -------------------------------------------------------------------------------- /barbican/tests/api/test_resources_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/test_resources_policy.py -------------------------------------------------------------------------------- /barbican/tests/api/test_transport_keys_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/api/test_transport_keys_resource.py -------------------------------------------------------------------------------- /barbican/tests/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/cmd/test-status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/cmd/test-status.py -------------------------------------------------------------------------------- /barbican/tests/cmd/test_barbican_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/cmd/test_barbican_manage.py -------------------------------------------------------------------------------- /barbican/tests/cmd/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/cmd/test_cmd.py -------------------------------------------------------------------------------- /barbican/tests/cmd/test_db_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/cmd/test_db_cleanup.py -------------------------------------------------------------------------------- /barbican/tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/common/test_hrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/common/test_hrefs.py -------------------------------------------------------------------------------- /barbican/tests/common/test_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/common/test_quota.py -------------------------------------------------------------------------------- /barbican/tests/common/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/common/test_utils.py -------------------------------------------------------------------------------- /barbican/tests/common/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/common/test_validators.py -------------------------------------------------------------------------------- /barbican/tests/database_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/database_utils.py -------------------------------------------------------------------------------- /barbican/tests/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/fixture.py -------------------------------------------------------------------------------- /barbican/tests/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/keys.py -------------------------------------------------------------------------------- /barbican/tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/model/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_acls.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_certificate_authorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_certificate_authorities.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_consumers.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_containers.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_order_retry_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_order_retry_tasks.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_orders.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_projects.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_quotas.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_secret_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_secret_consumers.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_secret_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_secret_metadata.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_secret_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_secret_stores.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_secrets.py -------------------------------------------------------------------------------- /barbican/tests/model/repositories/test_repositories_transport_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/repositories/test_repositories_transport_keys.py -------------------------------------------------------------------------------- /barbican/tests/model/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/model/test_models.py -------------------------------------------------------------------------------- /barbican/tests/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/objects/test_ovo_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/objects/test_ovo_base.py -------------------------------------------------------------------------------- /barbican/tests/objects/test_ovo_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/objects/test_ovo_project.py -------------------------------------------------------------------------------- /barbican/tests/objects/test_ovo_project_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/objects/test_ovo_project_quotas.py -------------------------------------------------------------------------------- /barbican/tests/objects/test_ovo_project_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/objects/test_ovo_project_secret_store.py -------------------------------------------------------------------------------- /barbican/tests/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/plugin/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/plugin/crypto/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/crypto/test_crypto.py -------------------------------------------------------------------------------- /barbican/tests/plugin/crypto/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/crypto/test_manager.py -------------------------------------------------------------------------------- /barbican/tests/plugin/crypto/test_p11_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/crypto/test_p11_crypto.py -------------------------------------------------------------------------------- /barbican/tests/plugin/crypto/test_pkcs11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/crypto/test_pkcs11.py -------------------------------------------------------------------------------- /barbican/tests/plugin/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/plugin/interface/test_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/interface/test_secret_store.py -------------------------------------------------------------------------------- /barbican/tests/plugin/test_castellan_secret_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/test_castellan_secret_store.py -------------------------------------------------------------------------------- /barbican/tests/plugin/test_dogtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/test_dogtag.py -------------------------------------------------------------------------------- /barbican/tests/plugin/test_kmip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/test_kmip.py -------------------------------------------------------------------------------- /barbican/tests/plugin/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/test_resource.py -------------------------------------------------------------------------------- /barbican/tests/plugin/test_store_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/test_store_crypto.py -------------------------------------------------------------------------------- /barbican/tests/plugin/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/plugin/util/test_mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/util/test_mime_types.py -------------------------------------------------------------------------------- /barbican/tests/plugin/util/test_multiple_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/util/test_multiple_backends.py -------------------------------------------------------------------------------- /barbican/tests/plugin/util/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/util/test_translations.py -------------------------------------------------------------------------------- /barbican/tests/plugin/util/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/plugin/util/test_utils.py -------------------------------------------------------------------------------- /barbican/tests/queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/queue/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/queue/test_client.py -------------------------------------------------------------------------------- /barbican/tests/queue/test_keystone_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/queue/test_keystone_listener.py -------------------------------------------------------------------------------- /barbican/tests/queue/test_retry_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/queue/test_retry_scheduler.py -------------------------------------------------------------------------------- /barbican/tests/queue/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/queue/test_server.py -------------------------------------------------------------------------------- /barbican/tests/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/tests/tasks/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/tasks/test_common.py -------------------------------------------------------------------------------- /barbican/tests/tasks/test_keystone_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/tasks/test_keystone_consumer.py -------------------------------------------------------------------------------- /barbican/tests/tasks/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/tasks/test_resources.py -------------------------------------------------------------------------------- /barbican/tests/test_hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/test_hacking.py -------------------------------------------------------------------------------- /barbican/tests/test_middleware_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/test_middleware_auth.py -------------------------------------------------------------------------------- /barbican/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/tests/utils.py -------------------------------------------------------------------------------- /barbican/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/version.py -------------------------------------------------------------------------------- /barbican/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barbican/wsgi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/barbican/wsgi/api.py -------------------------------------------------------------------------------- /bin/barbican-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/bin/barbican-api -------------------------------------------------------------------------------- /bin/barbican.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/bin/barbican.sh -------------------------------------------------------------------------------- /bin/demo_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/bin/demo_requests.py -------------------------------------------------------------------------------- /bin/keystone_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/bin/keystone_data.sh -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/bindep.txt -------------------------------------------------------------------------------- /devstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/README.md -------------------------------------------------------------------------------- /devstack/gate_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/gate_hook.sh -------------------------------------------------------------------------------- /devstack/lib/barbican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/lib/barbican -------------------------------------------------------------------------------- /devstack/lib/tempest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/lib/tempest -------------------------------------------------------------------------------- /devstack/local.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/local.conf.example -------------------------------------------------------------------------------- /devstack/plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/plugin.sh -------------------------------------------------------------------------------- /devstack/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/settings -------------------------------------------------------------------------------- /devstack/upgrade/resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/upgrade/resources.sh -------------------------------------------------------------------------------- /devstack/upgrade/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/upgrade/settings -------------------------------------------------------------------------------- /devstack/upgrade/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/upgrade/shutdown.sh -------------------------------------------------------------------------------- /devstack/upgrade/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/devstack/upgrade/upgrade.sh -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_extra/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/_extra/.htaccess -------------------------------------------------------------------------------- /doc/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/admin/access_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/access_control.rst -------------------------------------------------------------------------------- /doc/source/admin/barbican_manage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/barbican_manage.rst -------------------------------------------------------------------------------- /doc/source/admin/database_cleaning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/database_cleaning.rst -------------------------------------------------------------------------------- /doc/source/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/index.rst -------------------------------------------------------------------------------- /doc/source/admin/pkcs11keygeneration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/pkcs11keygeneration.rst -------------------------------------------------------------------------------- /doc/source/admin/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/admin/upgrade.rst -------------------------------------------------------------------------------- /doc/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/index.rst -------------------------------------------------------------------------------- /doc/source/api/microversion_history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/microversion_history.rst -------------------------------------------------------------------------------- /doc/source/api/microversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/microversions.rst -------------------------------------------------------------------------------- /doc/source/api/reference/acls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/acls.rst -------------------------------------------------------------------------------- /doc/source/api/reference/container_consumers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/container_consumers.rst -------------------------------------------------------------------------------- /doc/source/api/reference/containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/containers.rst -------------------------------------------------------------------------------- /doc/source/api/reference/orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/orders.rst -------------------------------------------------------------------------------- /doc/source/api/reference/quotas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/quotas.rst -------------------------------------------------------------------------------- /doc/source/api/reference/secret_consumers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/secret_consumers.rst -------------------------------------------------------------------------------- /doc/source/api/reference/secret_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/secret_metadata.rst -------------------------------------------------------------------------------- /doc/source/api/reference/secret_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/secret_types.rst -------------------------------------------------------------------------------- /doc/source/api/reference/secrets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/secrets.rst -------------------------------------------------------------------------------- /doc/source/api/reference/store_backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/api/reference/store_backends.rst -------------------------------------------------------------------------------- /doc/source/cli/barbican-status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/cli/barbican-status.rst -------------------------------------------------------------------------------- /doc/source/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/cli/index.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configuration/audit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/audit.rst -------------------------------------------------------------------------------- /doc/source/configuration/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/config.rst -------------------------------------------------------------------------------- /doc/source/configuration/dogtag_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/dogtag_setup.rst -------------------------------------------------------------------------------- /doc/source/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/index.rst -------------------------------------------------------------------------------- /doc/source/configuration/keystone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/keystone.rst -------------------------------------------------------------------------------- /doc/source/configuration/noauth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/noauth.rst -------------------------------------------------------------------------------- /doc/source/configuration/plugin_backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/plugin_backends.rst -------------------------------------------------------------------------------- /doc/source/configuration/policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/policy.rst -------------------------------------------------------------------------------- /doc/source/configuration/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/configuration/troubleshooting.rst -------------------------------------------------------------------------------- /doc/source/contributor/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/architecture.rst -------------------------------------------------------------------------------- /doc/source/contributor/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/contributing.rst -------------------------------------------------------------------------------- /doc/source/contributor/database_migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/database_migrations.rst -------------------------------------------------------------------------------- /doc/source/contributor/dataflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/dataflow.rst -------------------------------------------------------------------------------- /doc/source/contributor/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/dependencies.rst -------------------------------------------------------------------------------- /doc/source/contributor/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/dev.rst -------------------------------------------------------------------------------- /doc/source/contributor/devstack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/devstack.rst -------------------------------------------------------------------------------- /doc/source/contributor/getting_involved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/getting_involved.rst -------------------------------------------------------------------------------- /doc/source/contributor/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/microversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/microversions.rst -------------------------------------------------------------------------------- /doc/source/contributor/plugin/crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/plugin/crypto.rst -------------------------------------------------------------------------------- /doc/source/contributor/plugin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/plugin/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/plugin/secret_store.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/plugin/secret_store.rst -------------------------------------------------------------------------------- /doc/source/contributor/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/structure.rst -------------------------------------------------------------------------------- /doc/source/contributor/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/contributor/testing.rst -------------------------------------------------------------------------------- /doc/source/images/barbican-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/images/barbican-components.png -------------------------------------------------------------------------------- /doc/source/images/barbican-overall-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/images/barbican-overall-architecture.png -------------------------------------------------------------------------------- /doc/source/images/mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/images/mascot.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install/barbican-backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/barbican-backend.rst -------------------------------------------------------------------------------- /doc/source/install/common_configure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/common_configure.rst -------------------------------------------------------------------------------- /doc/source/install/common_prerequisites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/common_prerequisites.rst -------------------------------------------------------------------------------- /doc/source/install/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/get_started.rst -------------------------------------------------------------------------------- /doc/source/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/index.rst -------------------------------------------------------------------------------- /doc/source/install/install-rdo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/install-rdo.rst -------------------------------------------------------------------------------- /doc/source/install/install-ubuntu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/install-ubuntu.rst -------------------------------------------------------------------------------- /doc/source/install/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/install.rst -------------------------------------------------------------------------------- /doc/source/install/next-steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/next-steps.rst -------------------------------------------------------------------------------- /doc/source/install/verify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/install/verify.rst -------------------------------------------------------------------------------- /doc/source/sample_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/sample_config.rst -------------------------------------------------------------------------------- /doc/source/sample_policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/doc/source/sample_policy.rst -------------------------------------------------------------------------------- /etc/barbican/README.barbican.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/barbican/README.barbican.conf.txt -------------------------------------------------------------------------------- /etc/barbican/api_audit_map.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/barbican/api_audit_map.conf -------------------------------------------------------------------------------- /etc/barbican/barbican-api-paste.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/barbican/barbican-api-paste.ini -------------------------------------------------------------------------------- /etc/barbican/barbican-functional.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/barbican/barbican-functional.conf -------------------------------------------------------------------------------- /etc/barbican/vassals/barbican-api.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/barbican/vassals/barbican-api.ini -------------------------------------------------------------------------------- /etc/init/barbican-keystone-listener.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/init/barbican-keystone-listener.conf -------------------------------------------------------------------------------- /etc/init/barbican-worker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/init/barbican-worker.conf -------------------------------------------------------------------------------- /etc/init/barbican.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/init/barbican.conf -------------------------------------------------------------------------------- /etc/logrotate.d/barbican-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/logrotate.d/barbican-api -------------------------------------------------------------------------------- /etc/oslo-config-generator/barbican.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/oslo-config-generator/barbican.conf -------------------------------------------------------------------------------- /etc/oslo-config-generator/policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/etc/oslo-config-generator/policy.conf -------------------------------------------------------------------------------- /functionaltests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/.coveragerc -------------------------------------------------------------------------------- /functionaltests/.testr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/.testr.conf -------------------------------------------------------------------------------- /functionaltests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/base.py -------------------------------------------------------------------------------- /functionaltests/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/acl_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/acl_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/base_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/base_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/consumer_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/consumer_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/container_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/container_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/order_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/order_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/quota_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/quota_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/secret_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/secret_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/secretmeta_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/secretmeta_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/behaviors/secretstores_behaviors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/behaviors/secretstores_behaviors.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_acls.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_acls_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_acls_rbac.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_consumers.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_containers.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_containers_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_containers_rbac.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_orders.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_orders_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_orders_rbac.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_quotas.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_quotas_enforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_quotas_enforce.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_quotas_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_quotas_rbac.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_rsa.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_secretmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_secretmeta.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_secrets.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_secrets_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_secrets_rbac.py -------------------------------------------------------------------------------- /functionaltests/api/v1/functional/test_secretstores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/functional/test_secretstores.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/v1/models/acl_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/acl_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/base_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/base_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/ca_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/ca_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/consumer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/consumer_model.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/container_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/container_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/order_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/order_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/quota_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/quota_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/models/secret_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/models/secret_models.py -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/test_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/smoke/test_consumers.py -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/smoke/test_containers.py -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/smoke/test_orders.py -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/smoke/test_secrets.py -------------------------------------------------------------------------------- /functionaltests/api/v1/smoke/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/api/v1/smoke/test_versions.py -------------------------------------------------------------------------------- /functionaltests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functionaltests/common/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/common/auth.py -------------------------------------------------------------------------------- /functionaltests/common/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/common/client.py -------------------------------------------------------------------------------- /functionaltests/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/common/config.py -------------------------------------------------------------------------------- /functionaltests/post_test_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/post_test_hook.sh -------------------------------------------------------------------------------- /functionaltests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/run_tests.sh -------------------------------------------------------------------------------- /functionaltests/run_tests_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/functionaltests/run_tests_parallel.sh -------------------------------------------------------------------------------- /playbooks/enable-fips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/enable-fips.yaml -------------------------------------------------------------------------------- /playbooks/legacy/barbican-devstack-base/post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/barbican-devstack-base/post.yaml -------------------------------------------------------------------------------- /playbooks/legacy/barbican-devstack-base/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/barbican-devstack-base/run.yaml -------------------------------------------------------------------------------- /playbooks/legacy/barbican-devstack-functional-base/dogtag-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/barbican-devstack-functional-base/dogtag-post.yaml -------------------------------------------------------------------------------- /playbooks/legacy/barbican-devstack-functional-base/post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/barbican-devstack-functional-base/post.yaml -------------------------------------------------------------------------------- /playbooks/legacy/barbican-devstack-functional-base/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/barbican-devstack-functional-base/run.yaml -------------------------------------------------------------------------------- /playbooks/legacy/grenade-devstack-barbican/post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/grenade-devstack-barbican/post.yaml -------------------------------------------------------------------------------- /playbooks/legacy/grenade-devstack-barbican/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/playbooks/legacy/grenade-devstack-barbican/run.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/pyproject.toml -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/add-barbican-manage-check-subcommands-38835078f5cc0ce2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-barbican-manage-check-subcommands-38835078f5cc0ce2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-configurable-mechanism-options-2e5c57099b4c91b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-configurable-mechanism-options-2e5c57099b4c91b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-new-pkcs11-options-fc7bb625998e91fc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-new-pkcs11-options-fc7bb625998e91fc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-os-locking-ok-option-d0cfc5883355632a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-os-locking-ok-option-d0cfc5883355632a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-simple-crypto-new-pkek-95b5d970cd85a6dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-simple-crypto-new-pkek-95b5d970cd85a6dd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-simple-crypto-secret-rewrap-48651f4c5440529e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/add-simple-crypto-secret-rewrap-48651f4c5440529e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/allow-aes-xts-512-bitlength-in-simple-crypto-95936a2d830035cc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/allow-aes-xts-512-bitlength-in-simple-crypto-95936a2d830035cc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/allow-multiple-pkcs11-token-labels-61b63e34b7c8cc1a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/allow-multiple-pkcs11-token-labels-61b63e34b7c8cc1a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/barbican-manage-d469b4d15454f981.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/barbican-manage-d469b4d15454f981.yaml -------------------------------------------------------------------------------- /releasenotes/notes/barbican-status-upgrade-check-framework-9df56289b1d91ba4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/barbican-status-upgrade-check-framework-9df56289b1d91ba4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/change_default_control_exchange-c47abc3e3f08aa31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/change_default_control_exchange-c47abc3e3f08aa31.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-json-formatted-policy-file-b135aa7551e81066.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/deprecate-json-formatted-policy-file-b135aa7551e81066.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-sql_pool_class-4596e157c2d5e9e7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/deprecate-sql_pool_class-4596e157c2d5e9e7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-py-2-7-f745ea90b33c7910.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/drop-py-2-7-f745ea90b33c7910.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-bug-2036506-bf171b5949495457.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-bug-2036506-bf171b5949495457.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-double-slash-hrefs-f6162ed7494dd0b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-double-slash-hrefs-f6162ed7494dd0b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2004734-977dbeda6b547f85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2004734-977dbeda6b547f85.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2004833-2b420688a82c3328.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2004833-2b420688a82c3328.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2006978-aa5f2r9cqpfa0tm8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2006978-aa5f2r9cqpfa0tm8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2008335-a253190d0fa799a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2008335-a253190d0fa799a0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2008649-reinitialize-pkcs11-object-4c0dc51c83288c21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2008649-reinitialize-pkcs11-object-4c0dc51c83288c21.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2009247-18faf4f2b570dfc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2009247-18faf4f2b570dfc0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2009664-042ef282c0dd6b6a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2009664-042ef282c0dd6b6a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2009672-d64ef6c10444f517.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2009672-d64ef6c10444f517.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2009791-allow-creator-delete-06dd3eb670d0e624.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2009791-allow-creator-delete-06dd3eb670d0e624.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-story-2010258-053ee02fe46b9984.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fix-story-2010258-053ee02fe46b9984.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixed-invalid-route-response-code-15a681d07222a4f7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fixed-invalid-route-response-code-15a681d07222a4f7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixed-mysql-migrations-23221671ba17ea5e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/fixed-mysql-migrations-23221671ba17ea5e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/http_proxy_to_wsgi-middleware-98dc4fe03eb362d3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/http_proxy_to_wsgi-middleware-98dc4fe03eb362d3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/increase-max-secret-size-da90164d8b328727.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/increase-max-secret-size-da90164d8b328727.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-listener-pooling-a4fb0dde9e25a21f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/keystone-listener-pooling-a4fb0dde9e25a21f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/metadata-api-e95d4559e7bf9ca9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/metadata-api-e95d4559e7bf9ca9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/multiple-backends-75f5b85c63b930b7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/multiple-backends-75f5b85c63b930b7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-db-9381293cc7bedc7d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/oslo-db-9381293cc7bedc7d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslopolicy-genscripts-1a7b364b8ffd7c3f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/oslopolicy-genscripts-1a7b364b8ffd7c3f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pkcs11-backend-performance-f3caacbe9e1ab535.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/pkcs11-backend-performance-f3caacbe9e1ab535.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pkcs11-remove-alrogithm-5ffcccc5197b236a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/pkcs11-remove-alrogithm-5ffcccc5197b236a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/port-ruledefaults-to-documentedruledefaults-954fe88af9fe72ed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/port-ruledefaults-to-documentedruledefaults-954fe88af9fe72ed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remap-policy-to-match-controller-1673ec7c88235227.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remap-policy-to-match-controller-1673ec7c88235227.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-certificate-order-df76100cfd1360ef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove-certificate-order-df76100cfd1360ef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-certificate-resources-cdb4708332436144.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove-certificate-resources-cdb4708332436144.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-pkcs11-token-label-69d4368906b91b7e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove-pkcs11-token-label-69d4368906b91b7e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py38-ecd3b5c9b6799e75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove-py38-ecd3b5c9b6799e75.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-system-scope-from-policy-f2f68c42c0742812.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove-system-scope-from-policy-f2f68c42c0742812.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_pkix-b045e7dde7e47356.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/remove_pkix-b045e7dde7e47356.yaml -------------------------------------------------------------------------------- /releasenotes/notes/removing-cas-certificate-orders-96fc47a7acaea273.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/removing-cas-certificate-orders-96fc47a7acaea273.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rename-db-opts-547a9114abde2e88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/rename-db-opts-547a9114abde2e88.yaml -------------------------------------------------------------------------------- /releasenotes/notes/renamed-generate-iv-option-29770cfcff8e3b83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/renamed-generate-iv-option-29770cfcff8e3b83.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secret-consumers-microversions-changes-5aacdad5b7c776a3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secret-consumers-microversions-changes-5aacdad5b7c776a3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-acl-policy-b534614ee7190108.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-acl-policy-b534614ee7190108.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-consumer-policy-5ff67280dc2a2c09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-consumer-policy-5ff67280dc2a2c09.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-container-policy-f7814e65dc2ab130.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-container-policy-f7814e65dc2ab130.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-order-policy-2068c64cb6830c6c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-order-policy-2068c64cb6830c6c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-quotas-policy-f725a2752d1ba3f4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-quotas-policy-f725a2752d1ba3f4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-secretmeta-policy-587cdad4e2ecee3a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-secretmeta-policy-587cdad4e2ecee3a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-secrets-policy-61d49439a043f865.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-secrets-policy-61d49439a043f865.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-secretstore-policy-ffa782850082add8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-secretstore-policy-ffa782850082add8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/secure-rbac-transportkey-policy-3e904787694f8471.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/secure-rbac-transportkey-policy-3e904787694f8471.yaml -------------------------------------------------------------------------------- /releasenotes/notes/simple-crypto-kek-rotation-b8fe76b32aa76190.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/simple-crypto-kek-rotation-b8fe76b32aa76190.yaml -------------------------------------------------------------------------------- /releasenotes/notes/simple-crypto-multiple-kek-939d7fae5657ca8e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/simple-crypto-multiple-kek-939d7fae5657ca8e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/update-autodbcreate-default-31b5a86063b91444.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/update-autodbcreate-default-31b5a86063b91444.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-barbican-conf-in-barbican-manage-52035c1cdbfc5a26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/use-barbican-conf-in-barbican-manage-52035c1cdbfc5a26.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-secure-rbac-by-default-bae44e5c36451928.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/use-secure-rbac-by-default-bae44e5c36451928.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use_oslo_config_generator-f2a9be9e71d90b1f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/notes/use_oslo_config_generator-f2a9be9e71d90b1f.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/liberty.rst -------------------------------------------------------------------------------- /releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/zh_CN/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/locale/zh_CN/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/barbican/HEAD/tox.ini --------------------------------------------------------------------------------