├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-SA-4.0.txt └── LicenseRef-Patent-license.txt ├── README.md ├── design └── rfc-01-fwu-suit │ ├── fetch-sequence.puml │ ├── fetch-sequence.svg │ ├── installer-sequence.puml │ ├── installer-sequence.svg │ ├── no-reboot-sequence.puml │ ├── no-reboot-sequence.svg │ ├── rfc-01.rst │ ├── suit-install.puml │ ├── suit-install.svg │ ├── suit-update.puml │ └── suit-update.svg ├── doc ├── attestation │ ├── README.md │ ├── about.rst │ ├── api.db │ │ └── psa │ │ │ └── initial_attestation.h │ ├── api │ │ └── api.rst │ ├── appendix │ │ ├── example-header.rst │ │ └── history.rst │ ├── conf.py │ ├── index.rst │ └── overview │ │ ├── intro.rst │ │ ├── report.rst │ │ └── use-cases.rst ├── crypto-driver │ ├── README.md │ ├── about │ │ ├── about.rst │ │ ├── references │ │ ├── releases │ │ └── terms │ ├── appendix │ │ ├── history.rst │ │ └── open-issues.rst │ ├── body │ │ ├── entry-points.rst │ │ ├── introduction.rst │ │ ├── manifest.rst │ │ ├── opaque.rst │ │ ├── overview.rst │ │ ├── transparent.rst │ │ └── using-drivers.rst │ ├── conf.py │ └── index.rst ├── crypto │ ├── README.md │ ├── about │ │ ├── about.rst │ │ ├── references │ │ ├── releases │ │ └── terms │ ├── api.db │ │ └── psa │ │ │ └── crypto.h │ ├── api │ │ ├── keys │ │ │ ├── attributes.rst │ │ │ ├── ids.rst │ │ │ ├── index.rst │ │ │ ├── lifetimes.rst │ │ │ ├── management.rst │ │ │ ├── policy.rst │ │ │ └── types.rst │ │ ├── library │ │ │ ├── index.rst │ │ │ ├── library.rst │ │ │ └── status.rst │ │ └── ops │ │ │ ├── aead.rst │ │ │ ├── algorithms.rst │ │ │ ├── cipher.rst │ │ │ ├── hash.rst │ │ │ ├── index.rst │ │ │ ├── key-agreement.rst │ │ │ ├── key-derivation.rst │ │ │ ├── key-encapsulation.rst │ │ │ ├── key-wrapping.rst │ │ │ ├── mac.rst │ │ │ ├── pake.rst │ │ │ ├── pk-encryption.rst │ │ │ ├── rng.rst │ │ │ ├── signature.rst │ │ │ └── xof.rst │ ├── appendix │ │ ├── encodings.rst │ │ ├── example_header.rst │ │ ├── history.rst │ │ ├── specdef_values.rst │ │ └── sra.rst │ ├── conf.py │ ├── figure │ │ ├── encoding │ │ │ ├── aead.json │ │ │ ├── aead.json.license │ │ │ ├── aead.pdf │ │ │ ├── aead.pdf.license │ │ │ ├── aead.svg │ │ │ ├── aead.svg.license │ │ │ ├── algorithm.json │ │ │ ├── algorithm.json.license │ │ │ ├── algorithm.pdf │ │ │ ├── algorithm.pdf.license │ │ │ ├── algorithm.svg │ │ │ ├── algorithm.svg.license │ │ │ ├── asymmetric_key.json │ │ │ ├── asymmetric_key.json.license │ │ │ ├── asymmetric_key.pdf │ │ │ ├── asymmetric_key.pdf.license │ │ │ ├── asymmetric_key.svg │ │ │ ├── asymmetric_key.svg.license │ │ │ ├── cipher.json │ │ │ ├── cipher.json.license │ │ │ ├── cipher.pdf │ │ │ ├── cipher.pdf.license │ │ │ ├── cipher.svg │ │ │ ├── cipher.svg.license │ │ │ ├── dh_key.json │ │ │ ├── dh_key.json.license │ │ │ ├── dh_key.pdf │ │ │ ├── dh_key.pdf.license │ │ │ ├── dh_key.svg │ │ │ ├── dh_key.svg.license │ │ │ ├── ecc_key.json │ │ │ ├── ecc_key.json.license │ │ │ ├── ecc_key.pdf │ │ │ ├── ecc_key.pdf.license │ │ │ ├── ecc_key.svg │ │ │ ├── ecc_key.svg.license │ │ │ ├── hash.json │ │ │ ├── hash.json.license │ │ │ ├── hash.pdf │ │ │ ├── hash.pdf.license │ │ │ ├── hash.svg │ │ │ ├── hash.svg.license │ │ │ ├── ka_combined.json │ │ │ ├── ka_combined.json.license │ │ │ ├── ka_combined.pdf │ │ │ ├── ka_combined.pdf.license │ │ │ ├── ka_combined.svg │ │ │ ├── ka_combined.svg.license │ │ │ ├── ka_raw.json │ │ │ ├── ka_raw.json.license │ │ │ ├── ka_raw.pdf │ │ │ ├── ka_raw.pdf.license │ │ │ ├── ka_raw.svg │ │ │ ├── ka_raw.svg.license │ │ │ ├── kdf.json │ │ │ ├── kdf.json.license │ │ │ ├── kdf.pdf │ │ │ ├── kdf.pdf.license │ │ │ ├── kdf.svg │ │ │ ├── kdf.svg.license │ │ │ ├── kem_encoding.json │ │ │ ├── kem_encoding.json.license │ │ │ ├── kem_encoding.pdf │ │ │ ├── kem_encoding.pdf.license │ │ │ ├── kem_encoding.svg │ │ │ ├── kem_encoding.svg.license │ │ │ ├── key-wrap.json │ │ │ ├── key-wrap.json.license │ │ │ ├── key-wrap.pdf │ │ │ ├── key-wrap.pdf.license │ │ │ ├── key-wrap.svg │ │ │ ├── key-wrap.svg.license │ │ │ ├── key_type.json │ │ │ ├── key_type.json.license │ │ │ ├── key_type.pdf │ │ │ ├── key_type.pdf.license │ │ │ ├── key_type.svg │ │ │ ├── key_type.svg.license │ │ │ ├── mac.json │ │ │ ├── mac.json.license │ │ │ ├── mac.pdf │ │ │ ├── mac.pdf.license │ │ │ ├── mac.svg │ │ │ ├── mac.svg.license │ │ │ ├── np_key.json │ │ │ ├── np_key.json.license │ │ │ ├── np_key.pdf │ │ │ ├── np_key.pdf.license │ │ │ ├── np_key.svg │ │ │ ├── np_key.svg.license │ │ │ ├── pake_encoding.json │ │ │ ├── pake_encoding.json.license │ │ │ ├── pake_encoding.pdf │ │ │ ├── pake_encoding.pdf.license │ │ │ ├── pake_encoding.svg │ │ │ ├── pake_encoding.svg.license │ │ │ ├── pke.json │ │ │ ├── pke.json.license │ │ │ ├── pke.pdf │ │ │ ├── pke.pdf.license │ │ │ ├── pke.svg │ │ │ ├── pke.svg.license │ │ │ ├── raw_key.json │ │ │ ├── raw_key.json.license │ │ │ ├── raw_key.pdf │ │ │ ├── raw_key.pdf.license │ │ │ ├── raw_key.svg │ │ │ ├── raw_key.svg.license │ │ │ ├── sign.json │ │ │ ├── sign.json.license │ │ │ ├── sign.pdf │ │ │ ├── sign.pdf.license │ │ │ ├── sign.svg │ │ │ ├── sign.svg.license │ │ │ ├── spake2p_key.json │ │ │ ├── spake2p_key.json.license │ │ │ ├── spake2p_key.pdf │ │ │ ├── spake2p_key.pdf.license │ │ │ ├── spake2p_key.svg │ │ │ ├── spake2p_key.svg.license │ │ │ ├── structured_key.json │ │ │ ├── structured_key.json.license │ │ │ ├── structured_key.pdf │ │ │ ├── structured_key.pdf.license │ │ │ ├── structured_key.svg │ │ │ ├── structured_key.svg.license │ │ │ ├── symmetric_key.json │ │ │ ├── symmetric_key.json.license │ │ │ ├── symmetric_key.pdf │ │ │ ├── symmetric_key.pdf.license │ │ │ ├── symmetric_key.svg │ │ │ ├── symmetric_key.svg.license │ │ │ ├── wpa3_sae_dh_key.json │ │ │ ├── wpa3_sae_dh_key.json.license │ │ │ ├── wpa3_sae_dh_key.pdf │ │ │ ├── wpa3_sae_dh_key.pdf.license │ │ │ ├── wpa3_sae_dh_key.svg │ │ │ ├── wpa3_sae_dh_key.svg.license │ │ │ ├── wpa3_sae_ecc_key.json │ │ │ ├── wpa3_sae_ecc_key.json.license │ │ │ ├── wpa3_sae_ecc_key.pdf │ │ │ ├── wpa3_sae_ecc_key.pdf.license │ │ │ ├── wpa3_sae_ecc_key.svg │ │ │ ├── wpa3_sae_ecc_key.svg.license │ │ │ ├── xof.json │ │ │ ├── xof.json.license │ │ │ ├── xof.pdf │ │ │ ├── xof.pdf.license │ │ │ ├── xof.svg │ │ │ └── xof.svg.license │ │ ├── multi_part_operation.pdf │ │ ├── multi_part_operation.pdf.license │ │ ├── multi_part_operation.puml │ │ ├── multi_part_operation.svg │ │ ├── multi_part_operation.svg.license │ │ ├── pake │ │ │ ├── j-pake.pdf │ │ │ ├── j-pake.pdf.license │ │ │ ├── j-pake.puml │ │ │ ├── j-pake.svg │ │ │ ├── j-pake.svg.license │ │ │ ├── pake_primitive.json │ │ │ ├── pake_primitive.json.license │ │ │ ├── pake_primitive.pdf │ │ │ ├── pake_primitive.pdf.license │ │ │ ├── pake_primitive.svg │ │ │ ├── pake_primitive.svg.license │ │ │ ├── spake2plus-reg.pdf │ │ │ ├── spake2plus-reg.pdf.license │ │ │ ├── spake2plus-reg.puml │ │ │ ├── spake2plus-reg.svg │ │ │ ├── spake2plus-reg.svg.license │ │ │ ├── spake2plus.pdf │ │ │ ├── spake2plus.pdf.license │ │ │ ├── spake2plus.puml │ │ │ ├── spake2plus.svg │ │ │ ├── spake2plus.svg.license │ │ │ ├── wpa3-sae-pt.pdf │ │ │ ├── wpa3-sae-pt.pdf.license │ │ │ ├── wpa3-sae-pt.puml │ │ │ ├── wpa3-sae-pt.svg │ │ │ ├── wpa3-sae-pt.svg.license │ │ │ ├── wpa3-sae.pdf │ │ │ ├── wpa3-sae.pdf.license │ │ │ ├── wpa3-sae.puml │ │ │ ├── wpa3-sae.svg │ │ │ └── wpa3-sae.svg.license │ │ └── sra │ │ │ ├── dfd_caller_isolation.pdf │ │ │ ├── dfd_caller_isolation.pdf.license │ │ │ ├── dfd_caller_isolation.puml │ │ │ ├── dfd_caller_isolation.svg │ │ │ ├── dfd_caller_isolation.svg.license │ │ │ ├── dfd_crypto_isolation.pdf │ │ │ ├── dfd_crypto_isolation.pdf.license │ │ │ ├── dfd_crypto_isolation.puml │ │ │ ├── dfd_crypto_isolation.svg │ │ │ ├── dfd_crypto_isolation.svg.license │ │ │ ├── dfd_no_isolation.pdf │ │ │ ├── dfd_no_isolation.pdf.license │ │ │ ├── dfd_no_isolation.puml │ │ │ ├── dfd_no_isolation.svg │ │ │ ├── dfd_no_isolation.svg.license │ │ │ ├── system-entities.pdf │ │ │ ├── system-entities.pdf.license │ │ │ ├── system-entities.puml │ │ │ ├── system-entities.svg │ │ │ └── system-entities.svg.license │ ├── index.rst │ └── overview │ │ ├── conventions.rst │ │ ├── functionality.rst │ │ ├── goals.rst │ │ ├── implementation.rst │ │ ├── intro.rst │ │ ├── sample-arch.rst │ │ └── usage.rst ├── ext-pqc │ ├── README.md │ ├── about │ │ ├── about.rst │ │ ├── references │ │ ├── releases │ │ └── terms │ ├── api.db │ │ └── psa │ │ │ └── crypto-pqc.h │ ├── api │ │ ├── hash.rst │ │ ├── lms.rst │ │ ├── mldsa.rst │ │ ├── mlkem.rst │ │ ├── pqc.rst │ │ ├── slhdsa.rst │ │ └── xmss.rst │ ├── appendix │ │ ├── encodings.rst │ │ ├── example_header.rst │ │ ├── history.rst │ │ └── specdef_values.rst │ ├── conf.py │ ├── figure │ │ └── encoding │ │ │ ├── slh_dsa_key.json │ │ │ ├── slh_dsa_key.json.license │ │ │ ├── slh_dsa_key.pdf │ │ │ ├── slh_dsa_key.pdf.license │ │ │ ├── slh_dsa_key.svg │ │ │ └── slh_dsa_key.svg.license │ ├── index.rst │ ├── overview │ │ └── intro.rst │ └── substitutions ├── fwu │ ├── README.md │ ├── about.rst │ ├── api.db │ │ └── psa │ │ │ └── update.h │ ├── api │ │ └── api.rst │ ├── appendix │ │ ├── change-history.rst │ │ ├── example-header.rst │ │ ├── examples.rst │ │ ├── sra.rst │ │ └── variations.rst │ ├── conf.py │ ├── example │ │ ├── clean_up.c │ │ ├── multi_image_singlepart.c │ │ ├── single_image.c │ │ ├── single_image_mutipart.c │ │ └── version_info.c │ ├── figure │ │ ├── arch │ │ │ ├── components.pdf │ │ │ ├── components.pdf.license │ │ │ ├── components.puml │ │ │ ├── components.svg │ │ │ ├── components.svg.license │ │ │ ├── trusted-client.pdf │ │ │ ├── trusted-client.pdf.license │ │ │ ├── trusted-client.puml │ │ │ ├── trusted-client.svg │ │ │ ├── trusted-client.svg.license │ │ │ ├── untrusted-client.pdf │ │ │ ├── untrusted-client.pdf.license │ │ │ ├── untrusted-client.puml │ │ │ ├── untrusted-client.svg │ │ │ ├── untrusted-client.svg.license │ │ │ ├── untrusted-staging.pdf │ │ │ ├── untrusted-staging.pdf.license │ │ │ ├── untrusted-staging.puml │ │ │ ├── untrusted-staging.svg │ │ │ └── untrusted-staging.svg.license │ │ ├── intro │ │ │ ├── context.pdf │ │ │ ├── context.pdf.license │ │ │ ├── context.puml │ │ │ ├── context.svg │ │ │ ├── context.svg.license │ │ │ ├── fwu-api.pdf │ │ │ ├── fwu-api.pdf.license │ │ │ ├── fwu-api.puml │ │ │ ├── fwu-api.svg │ │ │ └── fwu-api.svg.license │ │ ├── sequence.pdf │ │ ├── sequence.pdf.license │ │ ├── sequence.puml │ │ ├── sequence.svg │ │ ├── sequence.svg.license │ │ ├── sra │ │ │ ├── dm-trusted-client.pdf │ │ │ ├── dm-trusted-client.pdf.license │ │ │ ├── dm-trusted-client.svg │ │ │ ├── dm-trusted-client.svg.license │ │ │ ├── dm-untrusted-client-detail.pdf │ │ │ ├── dm-untrusted-client-detail.pdf.license │ │ │ ├── dm-untrusted-client-detail.svg │ │ │ ├── dm-untrusted-client-detail.svg.license │ │ │ ├── dm-untrusted-client.pdf │ │ │ ├── dm-untrusted-client.pdf.license │ │ │ ├── dm-untrusted-client.svg │ │ │ ├── dm-untrusted-client.svg.license │ │ │ ├── dm-untrusted-staging-detail.pdf │ │ │ ├── dm-untrusted-staging-detail.pdf.license │ │ │ ├── dm-untrusted-staging-detail.svg │ │ │ ├── dm-untrusted-staging-detail.svg.license │ │ │ ├── dm-untrusted-staging.pdf │ │ │ ├── dm-untrusted-staging.pdf.license │ │ │ ├── dm-untrusted-staging.svg │ │ │ ├── dm-untrusted-staging.svg.license │ │ │ ├── figures.vsdx │ │ │ ├── figures.vsdx.license │ │ │ ├── lifecycle.pdf │ │ │ ├── lifecycle.pdf.license │ │ │ ├── lifecycle.puml │ │ │ ├── lifecycle.svg │ │ │ └── lifecycle.svg.license │ │ └── states │ │ │ ├── default.pdf │ │ │ ├── default.pdf.license │ │ │ ├── default.puml │ │ │ ├── default.svg │ │ │ ├── default.svg.license │ │ │ ├── no-reboot-no-trial-volatile.pdf │ │ │ ├── no-reboot-no-trial-volatile.pdf.license │ │ │ ├── no-reboot-no-trial-volatile.puml │ │ │ ├── no-reboot-no-trial-volatile.svg │ │ │ ├── no-reboot-no-trial-volatile.svg.license │ │ │ ├── no-reboot-no-trial.pdf │ │ │ ├── no-reboot-no-trial.pdf.license │ │ │ ├── no-reboot-no-trial.puml │ │ │ ├── no-reboot-no-trial.svg │ │ │ ├── no-reboot-no-trial.svg.license │ │ │ ├── no-reboot-volatile.pdf │ │ │ ├── no-reboot-volatile.pdf.license │ │ │ ├── no-reboot-volatile.puml │ │ │ ├── no-reboot-volatile.svg │ │ │ ├── no-reboot-volatile.svg.license │ │ │ ├── no-reboot.pdf │ │ │ ├── no-reboot.pdf.license │ │ │ ├── no-reboot.puml │ │ │ ├── no-reboot.svg │ │ │ ├── no-reboot.svg.license │ │ │ ├── no-trial-volatile.pdf │ │ │ ├── no-trial-volatile.pdf.license │ │ │ ├── no-trial-volatile.puml │ │ │ ├── no-trial-volatile.svg │ │ │ ├── no-trial-volatile.svg.license │ │ │ ├── no-trial.pdf │ │ │ ├── no-trial.pdf.license │ │ │ ├── no-trial.puml │ │ │ ├── no-trial.svg │ │ │ ├── no-trial.svg.license │ │ │ ├── volatile.pdf │ │ │ ├── volatile.pdf.license │ │ │ ├── volatile.puml │ │ │ ├── volatile.svg │ │ │ └── volatile.svg.license │ ├── index.rst │ ├── overview │ │ ├── architecture.rst │ │ ├── goals.rst │ │ ├── intro.rst │ │ └── programming-model.rst │ ├── references │ ├── releases │ └── terms ├── status-code │ ├── README.md │ ├── about.rst │ ├── api.db │ │ └── psa │ │ │ └── error.h │ ├── api │ │ └── status-codes.rst │ ├── appendix │ │ ├── change-history.rst │ │ └── reference-headers.rst │ ├── conf.py │ ├── index.rst │ ├── overview │ │ └── intro.rst │ ├── references │ ├── releases │ └── terms └── storage │ ├── README.md │ ├── about.rst │ ├── api.db │ └── psa │ │ ├── internal_trusted_storage.h │ │ ├── protected_storage.h │ │ └── storage_common.h │ ├── api │ └── api.rst │ ├── appendix │ ├── headers.rst │ ├── history.rst │ └── sra.rst │ ├── conf.py │ ├── figure │ ├── callers.pdf │ ├── callers.pdf.license │ ├── callers.puml │ ├── callers.svg │ ├── callers.svg.license │ ├── dm-authorized.pdf │ ├── dm-authorized.pdf.license │ ├── dm-authorized.puml │ ├── dm-authorized.svg │ ├── dm-authorized.svg.license │ ├── dm-exposed.pdf │ ├── dm-exposed.pdf.license │ ├── dm-exposed.puml │ ├── dm-exposed.svg │ ├── dm-exposed.svg.license │ ├── dm-protected.pdf │ ├── dm-protected.pdf.license │ ├── dm-protected.puml │ ├── dm-protected.svg │ ├── dm-protected.svg.license │ ├── dm-secure-link.pdf │ ├── dm-secure-link.pdf.license │ ├── dm-secure-link.puml │ ├── dm-secure-link.svg │ ├── dm-secure-link.svg.license │ ├── lifecycle.pdf │ ├── lifecycle.pdf.license │ ├── lifecycle.puml │ ├── lifecycle.svg │ ├── lifecycle.svg.license │ ├── storage.pdf │ ├── storage.pdf.license │ ├── storage.puml │ ├── storage.svg │ └── storage.svg.license │ ├── index.rst │ └── overview │ ├── architecture.rst │ ├── intro.rst │ ├── operation.rst │ └── requirements.rst ├── examples ├── README.md └── crypto │ └── SP800-108_counter_KDF │ ├── CMakeLists.txt │ ├── README.md │ └── main.c ├── headers ├── attestation │ └── 1.0 │ │ └── psa │ │ └── initial_attestation.h ├── crypto │ ├── 1.1 │ │ └── psa │ │ │ ├── crypto-pake.h │ │ │ └── crypto.h │ ├── 1.2 │ │ └── psa │ │ │ ├── crypto-pake.h │ │ │ └── crypto.h │ ├── 1.3 │ │ └── psa │ │ │ ├── crypto-pqc.h │ │ │ └── crypto.h │ └── 1.4 │ │ └── psa │ │ ├── crypto-pqc.h │ │ └── crypto.h ├── fwu │ └── 1.0 │ │ └── psa │ │ └── update.h ├── status-code │ └── 1.0 │ │ └── psa │ │ └── error.h └── storage │ └── 1.0 │ └── psa │ ├── internal_trusted_storage.h │ ├── protected_storage.h │ └── storage_common.h └── related-projects.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Patent-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/LICENSES/LicenseRef-Patent-license.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/README.md -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/fetch-sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/fetch-sequence.puml -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/fetch-sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/fetch-sequence.svg -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/installer-sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/installer-sequence.puml -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/installer-sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/installer-sequence.svg -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/no-reboot-sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/no-reboot-sequence.puml -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/no-reboot-sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/no-reboot-sequence.svg -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/rfc-01.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/rfc-01.rst -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/suit-install.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/suit-install.puml -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/suit-install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/suit-install.svg -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/suit-update.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/suit-update.puml -------------------------------------------------------------------------------- /design/rfc-01-fwu-suit/suit-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/design/rfc-01-fwu-suit/suit-update.svg -------------------------------------------------------------------------------- /doc/attestation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/README.md -------------------------------------------------------------------------------- /doc/attestation/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/about.rst -------------------------------------------------------------------------------- /doc/attestation/api.db/psa/initial_attestation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/api.db/psa/initial_attestation.h -------------------------------------------------------------------------------- /doc/attestation/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/api/api.rst -------------------------------------------------------------------------------- /doc/attestation/appendix/example-header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/appendix/example-header.rst -------------------------------------------------------------------------------- /doc/attestation/appendix/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/appendix/history.rst -------------------------------------------------------------------------------- /doc/attestation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/conf.py -------------------------------------------------------------------------------- /doc/attestation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/index.rst -------------------------------------------------------------------------------- /doc/attestation/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/overview/intro.rst -------------------------------------------------------------------------------- /doc/attestation/overview/report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/overview/report.rst -------------------------------------------------------------------------------- /doc/attestation/overview/use-cases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/attestation/overview/use-cases.rst -------------------------------------------------------------------------------- /doc/crypto-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/README.md -------------------------------------------------------------------------------- /doc/crypto-driver/about/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/about/about.rst -------------------------------------------------------------------------------- /doc/crypto-driver/about/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/about/references -------------------------------------------------------------------------------- /doc/crypto-driver/about/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/about/releases -------------------------------------------------------------------------------- /doc/crypto-driver/about/terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/about/terms -------------------------------------------------------------------------------- /doc/crypto-driver/appendix/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/appendix/history.rst -------------------------------------------------------------------------------- /doc/crypto-driver/appendix/open-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/appendix/open-issues.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/entry-points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/entry-points.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/introduction.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/manifest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/manifest.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/opaque.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/opaque.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/overview.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/transparent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/transparent.rst -------------------------------------------------------------------------------- /doc/crypto-driver/body/using-drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/body/using-drivers.rst -------------------------------------------------------------------------------- /doc/crypto-driver/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/conf.py -------------------------------------------------------------------------------- /doc/crypto-driver/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto-driver/index.rst -------------------------------------------------------------------------------- /doc/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/README.md -------------------------------------------------------------------------------- /doc/crypto/about/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/about/about.rst -------------------------------------------------------------------------------- /doc/crypto/about/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/about/references -------------------------------------------------------------------------------- /doc/crypto/about/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/about/releases -------------------------------------------------------------------------------- /doc/crypto/about/terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/about/terms -------------------------------------------------------------------------------- /doc/crypto/api.db/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api.db/psa/crypto.h -------------------------------------------------------------------------------- /doc/crypto/api/keys/attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/attributes.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/ids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/ids.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/index.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/lifetimes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/lifetimes.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/management.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/policy.rst -------------------------------------------------------------------------------- /doc/crypto/api/keys/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/keys/types.rst -------------------------------------------------------------------------------- /doc/crypto/api/library/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/library/index.rst -------------------------------------------------------------------------------- /doc/crypto/api/library/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/library/library.rst -------------------------------------------------------------------------------- /doc/crypto/api/library/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/library/status.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/aead.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/aead.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/algorithms.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/cipher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/cipher.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/hash.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/index.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/key-agreement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/key-agreement.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/key-derivation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/key-derivation.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/key-encapsulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/key-encapsulation.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/key-wrapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/key-wrapping.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/mac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/mac.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/pake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/pake.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/pk-encryption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/pk-encryption.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/rng.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/rng.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/signature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/signature.rst -------------------------------------------------------------------------------- /doc/crypto/api/ops/xof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/api/ops/xof.rst -------------------------------------------------------------------------------- /doc/crypto/appendix/encodings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/appendix/encodings.rst -------------------------------------------------------------------------------- /doc/crypto/appendix/example_header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/appendix/example_header.rst -------------------------------------------------------------------------------- /doc/crypto/appendix/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/appendix/history.rst -------------------------------------------------------------------------------- /doc/crypto/appendix/specdef_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/appendix/specdef_values.rst -------------------------------------------------------------------------------- /doc/crypto/appendix/sra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/appendix/sra.rst -------------------------------------------------------------------------------- /doc/crypto/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/conf.py -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/aead.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/aead.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/algorithm.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/algorithm.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/asymmetric_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/asymmetric_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/cipher.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/cipher.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/dh_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/dh_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ecc_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ecc_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/hash.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/hash.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_combined.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_combined.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/ka_raw.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/ka_raw.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kdf.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kdf.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/kem_encoding.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/kem_encoding.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key-wrap.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key-wrap.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/key_type.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/key_type.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/mac.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/mac.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/np_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/np_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pake_encoding.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pake_encoding.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/pke.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/pke.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/raw_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/raw_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/sign.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/sign.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/spake2p_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/spake2p_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/structured_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/structured_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/symmetric_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/symmetric_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_dh_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_dh_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/wpa3_sae_ecc_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/wpa3_sae_ecc_key.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.json -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.svg -------------------------------------------------------------------------------- /doc/crypto/figure/encoding/xof.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/encoding/xof.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/multi_part_operation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/multi_part_operation.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/multi_part_operation.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/multi_part_operation.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/multi_part_operation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/multi_part_operation.puml -------------------------------------------------------------------------------- /doc/crypto/figure/multi_part_operation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/multi_part_operation.svg -------------------------------------------------------------------------------- /doc/crypto/figure/multi_part_operation.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/multi_part_operation.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/j-pake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/j-pake.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/j-pake.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/j-pake.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/j-pake.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/j-pake.puml -------------------------------------------------------------------------------- /doc/crypto/figure/pake/j-pake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/j-pake.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/j-pake.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/j-pake.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.json -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.json.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/pake_primitive.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/pake_primitive.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus-reg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus-reg.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus-reg.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus-reg.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus-reg.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus-reg.puml -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus-reg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus-reg.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus-reg.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus-reg.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus.puml -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/spake2plus.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/spake2plus.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae-pt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae-pt.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae-pt.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae-pt.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae-pt.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae-pt.puml -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae-pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae-pt.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae-pt.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae-pt.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae.puml -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae.svg -------------------------------------------------------------------------------- /doc/crypto/figure/pake/wpa3-sae.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/pake/wpa3-sae.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_caller_isolation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_caller_isolation.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_caller_isolation.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_caller_isolation.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_caller_isolation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_caller_isolation.puml -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_caller_isolation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_caller_isolation.svg -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_caller_isolation.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_caller_isolation.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_crypto_isolation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_crypto_isolation.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_crypto_isolation.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_crypto_isolation.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_crypto_isolation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_crypto_isolation.puml -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_crypto_isolation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_crypto_isolation.svg -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_crypto_isolation.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_crypto_isolation.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_no_isolation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_no_isolation.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_no_isolation.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_no_isolation.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_no_isolation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_no_isolation.puml -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_no_isolation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_no_isolation.svg -------------------------------------------------------------------------------- /doc/crypto/figure/sra/dfd_no_isolation.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/dfd_no_isolation.svg.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/system-entities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/system-entities.pdf -------------------------------------------------------------------------------- /doc/crypto/figure/sra/system-entities.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/system-entities.pdf.license -------------------------------------------------------------------------------- /doc/crypto/figure/sra/system-entities.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/system-entities.puml -------------------------------------------------------------------------------- /doc/crypto/figure/sra/system-entities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/system-entities.svg -------------------------------------------------------------------------------- /doc/crypto/figure/sra/system-entities.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/figure/sra/system-entities.svg.license -------------------------------------------------------------------------------- /doc/crypto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/index.rst -------------------------------------------------------------------------------- /doc/crypto/overview/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/conventions.rst -------------------------------------------------------------------------------- /doc/crypto/overview/functionality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/functionality.rst -------------------------------------------------------------------------------- /doc/crypto/overview/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/goals.rst -------------------------------------------------------------------------------- /doc/crypto/overview/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/implementation.rst -------------------------------------------------------------------------------- /doc/crypto/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/intro.rst -------------------------------------------------------------------------------- /doc/crypto/overview/sample-arch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/sample-arch.rst -------------------------------------------------------------------------------- /doc/crypto/overview/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/crypto/overview/usage.rst -------------------------------------------------------------------------------- /doc/ext-pqc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/README.md -------------------------------------------------------------------------------- /doc/ext-pqc/about/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/about/about.rst -------------------------------------------------------------------------------- /doc/ext-pqc/about/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/about/references -------------------------------------------------------------------------------- /doc/ext-pqc/about/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/about/releases -------------------------------------------------------------------------------- /doc/ext-pqc/about/terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/about/terms -------------------------------------------------------------------------------- /doc/ext-pqc/api.db/psa/crypto-pqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api.db/psa/crypto-pqc.h -------------------------------------------------------------------------------- /doc/ext-pqc/api/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/hash.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/lms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/lms.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/mldsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/mldsa.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/mlkem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/mlkem.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/pqc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/pqc.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/slhdsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/slhdsa.rst -------------------------------------------------------------------------------- /doc/ext-pqc/api/xmss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/api/xmss.rst -------------------------------------------------------------------------------- /doc/ext-pqc/appendix/encodings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/appendix/encodings.rst -------------------------------------------------------------------------------- /doc/ext-pqc/appendix/example_header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/appendix/example_header.rst -------------------------------------------------------------------------------- /doc/ext-pqc/appendix/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/appendix/history.rst -------------------------------------------------------------------------------- /doc/ext-pqc/appendix/specdef_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/appendix/specdef_values.rst -------------------------------------------------------------------------------- /doc/ext-pqc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/conf.py -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.json -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.json.license -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.pdf -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.pdf.license -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.svg -------------------------------------------------------------------------------- /doc/ext-pqc/figure/encoding/slh_dsa_key.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/figure/encoding/slh_dsa_key.svg.license -------------------------------------------------------------------------------- /doc/ext-pqc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/index.rst -------------------------------------------------------------------------------- /doc/ext-pqc/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/ext-pqc/overview/intro.rst -------------------------------------------------------------------------------- /doc/ext-pqc/substitutions: -------------------------------------------------------------------------------- 1 | .. |XMSS^MT| replace:: XMSS\ :sup:`MT` 2 | -------------------------------------------------------------------------------- /doc/fwu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/README.md -------------------------------------------------------------------------------- /doc/fwu/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/about.rst -------------------------------------------------------------------------------- /doc/fwu/api.db/psa/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/api.db/psa/update.h -------------------------------------------------------------------------------- /doc/fwu/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/api/api.rst -------------------------------------------------------------------------------- /doc/fwu/appendix/change-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/appendix/change-history.rst -------------------------------------------------------------------------------- /doc/fwu/appendix/example-header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/appendix/example-header.rst -------------------------------------------------------------------------------- /doc/fwu/appendix/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/appendix/examples.rst -------------------------------------------------------------------------------- /doc/fwu/appendix/sra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/appendix/sra.rst -------------------------------------------------------------------------------- /doc/fwu/appendix/variations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/appendix/variations.rst -------------------------------------------------------------------------------- /doc/fwu/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/conf.py -------------------------------------------------------------------------------- /doc/fwu/example/clean_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/example/clean_up.c -------------------------------------------------------------------------------- /doc/fwu/example/multi_image_singlepart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/example/multi_image_singlepart.c -------------------------------------------------------------------------------- /doc/fwu/example/single_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/example/single_image.c -------------------------------------------------------------------------------- /doc/fwu/example/single_image_mutipart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/example/single_image_mutipart.c -------------------------------------------------------------------------------- /doc/fwu/example/version_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/example/version_info.c -------------------------------------------------------------------------------- /doc/fwu/figure/arch/components.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/components.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/arch/components.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/components.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/components.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/components.puml -------------------------------------------------------------------------------- /doc/fwu/figure/arch/components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/components.svg -------------------------------------------------------------------------------- /doc/fwu/figure/arch/components.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/components.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/trusted-client.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/trusted-client.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/arch/trusted-client.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/trusted-client.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/trusted-client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/trusted-client.puml -------------------------------------------------------------------------------- /doc/fwu/figure/arch/trusted-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/trusted-client.svg -------------------------------------------------------------------------------- /doc/fwu/figure/arch/trusted-client.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/trusted-client.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-client.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-client.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-client.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-client.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-client.puml -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-client.svg -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-client.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-client.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-staging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-staging.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-staging.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-staging.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-staging.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-staging.puml -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-staging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-staging.svg -------------------------------------------------------------------------------- /doc/fwu/figure/arch/untrusted-staging.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/arch/untrusted-staging.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/intro/context.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/context.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/intro/context.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/context.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/intro/context.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/context.puml -------------------------------------------------------------------------------- /doc/fwu/figure/intro/context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/context.svg -------------------------------------------------------------------------------- /doc/fwu/figure/intro/context.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/context.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/intro/fwu-api.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/fwu-api.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/intro/fwu-api.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/fwu-api.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/intro/fwu-api.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/fwu-api.puml -------------------------------------------------------------------------------- /doc/fwu/figure/intro/fwu-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/fwu-api.svg -------------------------------------------------------------------------------- /doc/fwu/figure/intro/fwu-api.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/intro/fwu-api.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sequence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sequence.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sequence.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sequence.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sequence.puml -------------------------------------------------------------------------------- /doc/fwu/figure/sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sequence.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sequence.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sequence.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-trusted-client.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-trusted-client.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-trusted-client.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-trusted-client.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-trusted-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-trusted-client.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-trusted-client.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-trusted-client.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client-detail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client-detail.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client-detail.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client-detail.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client-detail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client-detail.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client-detail.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client-detail.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-client.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-client.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging-detail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging-detail.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging-detail.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging-detail.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging-detail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging-detail.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging-detail.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging-detail.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/dm-untrusted-staging.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/dm-untrusted-staging.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/figures.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/figures.vsdx -------------------------------------------------------------------------------- /doc/fwu/figure/sra/figures.vsdx.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/figures.vsdx.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/lifecycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/lifecycle.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/sra/lifecycle.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/lifecycle.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/sra/lifecycle.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/lifecycle.puml -------------------------------------------------------------------------------- /doc/fwu/figure/sra/lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/lifecycle.svg -------------------------------------------------------------------------------- /doc/fwu/figure/sra/lifecycle.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/sra/lifecycle.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/default.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/default.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/default.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/default.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/default.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/default.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/default.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/default.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial-volatile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial-volatile.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial-volatile.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial-volatile.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial-volatile.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial-volatile.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial-volatile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial-volatile.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial-volatile.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial-volatile.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-no-trial.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-no-trial.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-volatile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-volatile.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-volatile.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-volatile.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-volatile.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-volatile.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-volatile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-volatile.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot-volatile.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot-volatile.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-reboot.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-reboot.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial-volatile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial-volatile.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial-volatile.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial-volatile.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial-volatile.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial-volatile.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial-volatile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial-volatile.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial-volatile.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial-volatile.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/no-trial.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/no-trial.svg.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/volatile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/volatile.pdf -------------------------------------------------------------------------------- /doc/fwu/figure/states/volatile.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/volatile.pdf.license -------------------------------------------------------------------------------- /doc/fwu/figure/states/volatile.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/volatile.puml -------------------------------------------------------------------------------- /doc/fwu/figure/states/volatile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/volatile.svg -------------------------------------------------------------------------------- /doc/fwu/figure/states/volatile.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/figure/states/volatile.svg.license -------------------------------------------------------------------------------- /doc/fwu/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/index.rst -------------------------------------------------------------------------------- /doc/fwu/overview/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/overview/architecture.rst -------------------------------------------------------------------------------- /doc/fwu/overview/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/overview/goals.rst -------------------------------------------------------------------------------- /doc/fwu/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/overview/intro.rst -------------------------------------------------------------------------------- /doc/fwu/overview/programming-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/overview/programming-model.rst -------------------------------------------------------------------------------- /doc/fwu/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/references -------------------------------------------------------------------------------- /doc/fwu/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/releases -------------------------------------------------------------------------------- /doc/fwu/terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/fwu/terms -------------------------------------------------------------------------------- /doc/status-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/README.md -------------------------------------------------------------------------------- /doc/status-code/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/about.rst -------------------------------------------------------------------------------- /doc/status-code/api.db/psa/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/api.db/psa/error.h -------------------------------------------------------------------------------- /doc/status-code/api/status-codes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/api/status-codes.rst -------------------------------------------------------------------------------- /doc/status-code/appendix/change-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/appendix/change-history.rst -------------------------------------------------------------------------------- /doc/status-code/appendix/reference-headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/appendix/reference-headers.rst -------------------------------------------------------------------------------- /doc/status-code/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/conf.py -------------------------------------------------------------------------------- /doc/status-code/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/index.rst -------------------------------------------------------------------------------- /doc/status-code/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/overview/intro.rst -------------------------------------------------------------------------------- /doc/status-code/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/references -------------------------------------------------------------------------------- /doc/status-code/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/releases -------------------------------------------------------------------------------- /doc/status-code/terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/status-code/terms -------------------------------------------------------------------------------- /doc/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/README.md -------------------------------------------------------------------------------- /doc/storage/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/about.rst -------------------------------------------------------------------------------- /doc/storage/api.db/psa/internal_trusted_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/api.db/psa/internal_trusted_storage.h -------------------------------------------------------------------------------- /doc/storage/api.db/psa/protected_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/api.db/psa/protected_storage.h -------------------------------------------------------------------------------- /doc/storage/api.db/psa/storage_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/api.db/psa/storage_common.h -------------------------------------------------------------------------------- /doc/storage/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/api/api.rst -------------------------------------------------------------------------------- /doc/storage/appendix/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/appendix/headers.rst -------------------------------------------------------------------------------- /doc/storage/appendix/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/appendix/history.rst -------------------------------------------------------------------------------- /doc/storage/appendix/sra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/appendix/sra.rst -------------------------------------------------------------------------------- /doc/storage/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/conf.py -------------------------------------------------------------------------------- /doc/storage/figure/callers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/callers.pdf -------------------------------------------------------------------------------- /doc/storage/figure/callers.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/callers.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/callers.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/callers.puml -------------------------------------------------------------------------------- /doc/storage/figure/callers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/callers.svg -------------------------------------------------------------------------------- /doc/storage/figure/callers.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/callers.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-authorized.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-authorized.pdf -------------------------------------------------------------------------------- /doc/storage/figure/dm-authorized.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-authorized.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-authorized.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-authorized.puml -------------------------------------------------------------------------------- /doc/storage/figure/dm-authorized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-authorized.svg -------------------------------------------------------------------------------- /doc/storage/figure/dm-authorized.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-authorized.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-exposed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-exposed.pdf -------------------------------------------------------------------------------- /doc/storage/figure/dm-exposed.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-exposed.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-exposed.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-exposed.puml -------------------------------------------------------------------------------- /doc/storage/figure/dm-exposed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-exposed.svg -------------------------------------------------------------------------------- /doc/storage/figure/dm-exposed.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-exposed.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-protected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-protected.pdf -------------------------------------------------------------------------------- /doc/storage/figure/dm-protected.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-protected.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-protected.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-protected.puml -------------------------------------------------------------------------------- /doc/storage/figure/dm-protected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-protected.svg -------------------------------------------------------------------------------- /doc/storage/figure/dm-protected.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-protected.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-secure-link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-secure-link.pdf -------------------------------------------------------------------------------- /doc/storage/figure/dm-secure-link.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-secure-link.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/dm-secure-link.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-secure-link.puml -------------------------------------------------------------------------------- /doc/storage/figure/dm-secure-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-secure-link.svg -------------------------------------------------------------------------------- /doc/storage/figure/dm-secure-link.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/dm-secure-link.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/lifecycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/lifecycle.pdf -------------------------------------------------------------------------------- /doc/storage/figure/lifecycle.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/lifecycle.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/lifecycle.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/lifecycle.puml -------------------------------------------------------------------------------- /doc/storage/figure/lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/lifecycle.svg -------------------------------------------------------------------------------- /doc/storage/figure/lifecycle.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/lifecycle.svg.license -------------------------------------------------------------------------------- /doc/storage/figure/storage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/storage.pdf -------------------------------------------------------------------------------- /doc/storage/figure/storage.pdf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/storage.pdf.license -------------------------------------------------------------------------------- /doc/storage/figure/storage.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/storage.puml -------------------------------------------------------------------------------- /doc/storage/figure/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/storage.svg -------------------------------------------------------------------------------- /doc/storage/figure/storage.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/figure/storage.svg.license -------------------------------------------------------------------------------- /doc/storage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/index.rst -------------------------------------------------------------------------------- /doc/storage/overview/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/overview/architecture.rst -------------------------------------------------------------------------------- /doc/storage/overview/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/overview/intro.rst -------------------------------------------------------------------------------- /doc/storage/overview/operation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/overview/operation.rst -------------------------------------------------------------------------------- /doc/storage/overview/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/doc/storage/overview/requirements.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/crypto/SP800-108_counter_KDF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/examples/crypto/SP800-108_counter_KDF/CMakeLists.txt -------------------------------------------------------------------------------- /examples/crypto/SP800-108_counter_KDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/examples/crypto/SP800-108_counter_KDF/README.md -------------------------------------------------------------------------------- /examples/crypto/SP800-108_counter_KDF/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/examples/crypto/SP800-108_counter_KDF/main.c -------------------------------------------------------------------------------- /headers/attestation/1.0/psa/initial_attestation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/attestation/1.0/psa/initial_attestation.h -------------------------------------------------------------------------------- /headers/crypto/1.1/psa/crypto-pake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.1/psa/crypto-pake.h -------------------------------------------------------------------------------- /headers/crypto/1.1/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.1/psa/crypto.h -------------------------------------------------------------------------------- /headers/crypto/1.2/psa/crypto-pake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.2/psa/crypto-pake.h -------------------------------------------------------------------------------- /headers/crypto/1.2/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.2/psa/crypto.h -------------------------------------------------------------------------------- /headers/crypto/1.3/psa/crypto-pqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.3/psa/crypto-pqc.h -------------------------------------------------------------------------------- /headers/crypto/1.3/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.3/psa/crypto.h -------------------------------------------------------------------------------- /headers/crypto/1.4/psa/crypto-pqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.4/psa/crypto-pqc.h -------------------------------------------------------------------------------- /headers/crypto/1.4/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/crypto/1.4/psa/crypto.h -------------------------------------------------------------------------------- /headers/fwu/1.0/psa/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/fwu/1.0/psa/update.h -------------------------------------------------------------------------------- /headers/status-code/1.0/psa/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/status-code/1.0/psa/error.h -------------------------------------------------------------------------------- /headers/storage/1.0/psa/internal_trusted_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/storage/1.0/psa/internal_trusted_storage.h -------------------------------------------------------------------------------- /headers/storage/1.0/psa/protected_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/storage/1.0/psa/protected_storage.h -------------------------------------------------------------------------------- /headers/storage/1.0/psa/storage_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/headers/storage/1.0/psa/storage_common.h -------------------------------------------------------------------------------- /related-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/psa-api/HEAD/related-projects.md --------------------------------------------------------------------------------