Home
last modified time | relevance | path

Searched refs:chachapoly (Results 1 – 10 of 10) sorted by relevance

/mbedtls-latest/library/
Dpsa_crypto_aead.c94 mbedtls_chachapoly_init(&operation->ctx.chachapoly); in psa_aead_setup()
96 mbedtls_chachapoly_setkey(&operation->ctx.chachapoly, in psa_aead_setup()
176 mbedtls_chachapoly_encrypt_and_tag(&operation.ctx.chachapoly, in mbedtls_psa_aead_encrypt()
287 mbedtls_chachapoly_auth_decrypt(&operation.ctx.chachapoly, in mbedtls_psa_aead_decrypt()
401 mbedtls_chachapoly_starts(&operation->ctx.chachapoly, in mbedtls_psa_aead_set_nonce()
466 mbedtls_chachapoly_update_aad(&operation->ctx.chachapoly, in mbedtls_psa_aead_update_ad()
526 mbedtls_chachapoly_update(&operation->ctx.chachapoly, in mbedtls_psa_aead_update()
597 mbedtls_chachapoly_finish(&operation->ctx.chachapoly, in mbedtls_psa_aead_finish()
639 mbedtls_chachapoly_free(&operation->ctx.chachapoly); in mbedtls_psa_aead_abort()
DMakefile103 chachapoly.o \
DCMakeLists.txt29 chachapoly.c
/mbedtls-latest/programs/test/
Dbenchmark.c508 aes_cbc, aes_cfb128, aes_cfb8, aes_ctr, aes_gcm, aes_ccm, aes_xts, chachapoly, member
581 todo.chachapoly = 1; in main()
866 if (todo.chachapoly) { in main()
867 mbedtls_chachapoly_context chachapoly; in main() local
869 mbedtls_chachapoly_init(&chachapoly); in main()
875 mbedtls_chachapoly_setkey(&chachapoly, tmp); in main()
878 mbedtls_chachapoly_encrypt_and_tag(&chachapoly, in main()
881 mbedtls_chachapoly_free(&chachapoly); in main()
/mbedtls-latest/include/psa/
Dcrypto_builtin_composites.h96 mbedtls_chachapoly_context MBEDTLS_PRIVATE(chachapoly);
/mbedtls-latest/tests/suites/
Dtest_suite_chachapoly.function2 #include "mbedtls/chachapoly.h"
/mbedtls-latest/scripts/data_files/
Dquery_config.fmt31 #include "mbedtls/chachapoly.h"
/mbedtls-latest/tests/scripts/
Dcomponents-configuration-crypto.sh2364 not grep mbedtls_chachapoly library/chachapoly.o
2437 not grep mbedtls_chachapoly library/chachapoly.o
/mbedtls-latest/docs/
Dpsa-transition.md116 | `chachapoly.h` | `mbedtls_chachapoly_` | [Symmetric encryption](#symmetric-encryption), [Authenti…
267 … mode (`ccm.h`, `gcm.h`) or a particular stream cipher (`chacha20.h`, `chachapoly.h`). To migrate …
386 …ration in the legacy Mbed TLS cipher API (or similar workflows in the `chachapoly`, `ccm` and `gcm…
/mbedtls-latest/
DChangeLog66 - Ciphers and modes: aes.h, aria.h, camellia.h, chacha20.h, chachapoly.h,