Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/net/atlantic/
H A Drte_pmd_atlantic.c13 uint8_t encr, uint8_t repl_prot) in rte_pmd_atl_macsec_enable() argument
24 return atl_macsec_enable(dev, encr, repl_prot); in rte_pmd_atl_macsec_enable()
H A Drte_pmd_atlantic.h36 int rte_pmd_atl_macsec_enable(uint16_t port, uint8_t encr, uint8_t repl_prot);
H A Datl_ethdev.h107 int atl_macsec_enable(struct rte_eth_dev *dev, uint8_t encr, uint8_t repl_prot);
H A Datl_ethdev.c858 uint8_t encr, uint8_t repl_prot) in atl_macsec_enable() argument
864 cfg->aq_macsec.common.encryption_enabled = encr; in atl_macsec_enable()
/f-stack/dpdk/drivers/crypto/qat/
H A Dqat_sym.h63 uint8_t *encr = encrypted_iv; in bpi_cipher_encrypt() local
70 for (; srclen != 0; --srclen, ++dst, ++src, ++encr) in bpi_cipher_encrypt()
71 *dst = *src ^ *encr; in bpi_cipher_encrypt()
H A Dqat_sym.c28 uint8_t *encr = encrypted_iv; in bpi_cipher_decrypt() local
35 for (; srclen != 0; --srclen, ++dst, ++src, ++encr) in bpi_cipher_decrypt()
36 *dst = *src ^ *encr; in bpi_cipher_decrypt()