Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/crypto/qat/
H A Dqat_sym.h62 uint8_t encrypted_iv[BPI_MAX_ENCR_IV_LEN]; in bpi_cipher_encrypt() local
63 uint8_t *encr = encrypted_iv; in bpi_cipher_encrypt()
66 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen) in bpi_cipher_encrypt()
H A Dqat_sym.c27 uint8_t encrypted_iv[BPI_MAX_ENCR_IV_LEN]; in bpi_cipher_decrypt() local
28 uint8_t *encr = encrypted_iv; in bpi_cipher_decrypt()
31 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen) in bpi_cipher_decrypt()
/f-stack/dpdk/drivers/crypto/openssl/
H A Drte_openssl_pmd.c957 uint8_t encrypted_iv[DES_BLOCK_SIZE]; in process_openssl_cipher_bpi_encrypt() local
960 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, in process_openssl_cipher_bpi_encrypt()
965 *(dst + i) = *(src + i) ^ (encrypted_iv[i]); in process_openssl_cipher_bpi_encrypt()