Searched refs:xform_aead (Results 1 – 2 of 2) sorted by relevance
4664 struct rte_crypto_sym_xform *xform_aead; in parse_table_action_aead() local4675 xform_aead = calloc(1, sizeof(*xform_aead)); in parse_table_action_aead()4676 if (xform_aead == NULL) in parse_table_action_aead()4679 xform_aead->type = RTE_CRYPTO_SYM_XFORM_AEAD; in parse_table_action_aead()4680 xform_aead->aead.op = encrypt ? RTE_CRYPTO_AEAD_OP_ENCRYPT : in parse_table_action_aead()4700 xform_aead->aead.key.data = key; in parse_table_action_aead()4701 xform_aead->aead.key.length = (uint16_t)len; in parse_table_action_aead()4714 xform_aead->aead.iv.length = (uint16_t)len; in parse_table_action_aead()4728 xform_aead->aead.aad_length = (uint16_t)len; in parse_table_action_aead()4739 return xform_aead; in parse_table_action_aead()[all …]
3955 struct rte_crypto_sym_xform *xform_aead; in parse_table_action_aead() local3966 xform_aead = calloc(1, sizeof(*xform_aead)); in parse_table_action_aead()3967 if (xform_aead == NULL) in parse_table_action_aead()3970 xform_aead->type = RTE_CRYPTO_SYM_XFORM_AEAD; in parse_table_action_aead()3971 xform_aead->aead.op = encrypt ? RTE_CRYPTO_AEAD_OP_ENCRYPT : in parse_table_action_aead()3991 xform_aead->aead.key.data = key; in parse_table_action_aead()3992 xform_aead->aead.key.length = (uint16_t)len; in parse_table_action_aead()4005 xform_aead->aead.iv.length = (uint16_t)len; in parse_table_action_aead()4019 xform_aead->aead.aad_length = (uint16_t)len; in parse_table_action_aead()4030 return xform_aead; in parse_table_action_aead()[all …]