Lines Matching refs:aad
70 uint8_t *aad; in esp_inbound() local
79 aad = get_aad(m); in esp_inbound()
80 memcpy(aad, iv - sizeof(struct rte_esp_hdr), 8); in esp_inbound()
81 sym_cop->aead.aad.data = aad; in esp_inbound()
82 sym_cop->aead.aad.phys_addr = rte_pktmbuf_iova_offset(m, in esp_inbound()
83 aad - rte_pktmbuf_mtod(m, uint8_t *)); in esp_inbound()
372 uint8_t *aad; in esp_outbound() local
389 aad = get_aad(m); in esp_outbound()
390 memcpy(aad, esp, 8); in esp_outbound()
391 sym_cop->aead.aad.data = aad; in esp_outbound()
392 sym_cop->aead.aad.phys_addr = rte_pktmbuf_iova_offset(m, in esp_outbound()
393 aad - rte_pktmbuf_mtod(m, uint8_t *)); in esp_outbound()