Lines Matching defs:chachapoly
37 #include "mbedtls/chachapoly.h"
113 "aes_cbc, aes_cfb128, aes_cfb8, aes_gcm, aes_ccm, aes_xts, chachapoly\n" \
508 aes_cbc, aes_cfb128, aes_cfb8, aes_ctr, aes_gcm, aes_ccm, aes_xts, chachapoly,
580 } else if (strcmp(argv[i], "chachapoly") == 0) {
581 todo.chachapoly = 1;
866 if (todo.chachapoly) {
867 mbedtls_chachapoly_context chachapoly;
869 mbedtls_chachapoly_init(&chachapoly);
875 mbedtls_chachapoly_setkey(&chachapoly, tmp);
878 mbedtls_chachapoly_encrypt_and_tag(&chachapoly,
881 mbedtls_chachapoly_free(&chachapoly);