Lines Matching refs:cipher

96 See “[Cipher key management](#cipher-key-management)”, “[MAC key management](#mac-key-management)”,…
114 …tric encryption](#symmetric-encryption), [Authenticated cipher operations](#authenticated-cipher-o…
116 …tric encryption](#symmetric-encryption), [Authenticated cipher operations](#authenticated-cipher-o…
118 | `cipher.h` | `mbedtls_cipher_` | [Symmetric encryption](#symmetric-encryption) |
133 …tric encryption](#symmetric-encryption), [Authenticated cipher operations](#authenticated-cipher-o…
263 …ons take care of verifying the tag. See “[Authenticated cipher operations](#authenticated-cipher-o…
267cipher (`aes.h`, `aria.h`, `camellia.h`, `des.h`), a particular block cipher mode (`ccm.h`, `gcm.h…
273 For modes that are based on a block cipher, the key type encodes the choice of block cipher:
280 * Unauthenticated cipher modes:
295 For the ChaCha20 unauthenticated cipher, use [`PSA_KEY_TYPE_CHACHA20`](https://mbed-tls.readthedocs…
348 …the desired `PSA_KEY_TYPE_xxx` value (see “[Cipher mechanism selection](#cipher-mechanism-selectio…
350 …m to the desired `PSA_ALG_xxx` value (see “[Cipher mechanism selection](#cipher-mechanism-selectio…
359 ### Unauthenticated cipher operations
361 Recall the workflow of an unauthenticated cipher operation in the legacy Mbed TLS cipher API:
363 1. Create a cipher context of type `mbedtls_cipher_context_t` and initialize it with `mbedtls_ciphe…
384 ### Authenticated cipher operations
386 Recall the workflow of an authenticated cipher operation in the legacy Mbed TLS cipher API (or simi…
388 1. Create a cipher context of type `mbedtls_cipher_context_t` and initialize it with `mbedtls_ciphe…
416 ### Miscellaneous cipher operation management
420 …tls_cipher_get_xxx` functions to extract information from an ongoing PSA cipher or AEAD operation.…
457 …#c.PSA_ALG_CMAC) regardless of the underlying block cipher. The key type determines the block ciph…
536 …the desired `PSA_KEY_TYPE_xxx` value (see “[Cipher mechanism selection](#cipher-mechanism-selectio…
538 …m to the desired `PSA_ALG_xxx` value (see “[Cipher mechanism selection](#cipher-mechanism-selectio…
559 1. Create a cipher context of type `mbedtls_cipher_context_t` and initialize it with `mbedtls_ciphe…
560 2. Call `mbedtls_cipher_setup` to select the block cipher. Then call `mbedtls_md_cmac_starts` to se…