Lines Matching refs:xform_auth
3881 struct rte_crypto_sym_xform *xform_auth; in parse_table_action_cipher_auth() local
3891 xform_auth = calloc(1, sizeof(*xform_auth)); in parse_table_action_cipher_auth()
3892 if (xform_auth == NULL) in parse_table_action_cipher_auth()
3895 xform_auth->type = RTE_CRYPTO_SYM_XFORM_AUTH; in parse_table_action_cipher_auth()
3896 xform_auth->auth.op = encrypt ? RTE_CRYPTO_AUTH_OP_GENERATE : in parse_table_action_cipher_auth()
3900 status = rte_cryptodev_get_auth_algo_enum(&xform_auth->auth.algo, in parse_table_action_cipher_auth()
3916 xform_auth->auth.key.data = key; in parse_table_action_cipher_auth()
3917 xform_auth->auth.key.length = (uint16_t)len; in parse_table_action_cipher_auth()
3919 key += xform_auth->auth.key.length; in parse_table_action_cipher_auth()
3920 max_key_len -= xform_auth->auth.key.length; in parse_table_action_cipher_auth()
3925 status = parser_read_uint16(&xform_auth->auth.digest_length, in parse_table_action_cipher_auth()
3938 xform_cipher->next = xform_auth; in parse_table_action_cipher_auth()
3941 xform_auth->next = xform_cipher; in parse_table_action_cipher_auth()
3942 return xform_auth; in parse_table_action_cipher_auth()
3951 free(xform_auth); in parse_table_action_cipher_auth()