Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/demos/mac/
H A Dpoly1305.c88 EVP_CIPHER_CTX *aesctx = NULL; in main() local
125 aesctx = EVP_CIPHER_CTX_new(); in main()
126 if (aesctx == NULL) { in main()
132 if (!EVP_EncryptInit_ex(aesctx, aes, NULL, test_k, NULL)) { in main()
144 if (!EVP_CIPHER_CTX_set_padding(aesctx, 0)) { in main()
153 if (!EVP_EncryptUpdate(aesctx, composite_key + 16, &aes_len, in main()
201 EVP_CIPHER_CTX_free(aesctx); in main()