Lines Matching refs:xform_auth
3875 struct rte_crypto_sym_xform *xform_auth; in parse_table_action_cipher_auth() local
3885 xform_auth = calloc(1, sizeof(*xform_auth)); in parse_table_action_cipher_auth()
3886 if (xform_auth == NULL) in parse_table_action_cipher_auth()
3889 xform_auth->type = RTE_CRYPTO_SYM_XFORM_AUTH; in parse_table_action_cipher_auth()
3890 xform_auth->auth.op = encrypt ? RTE_CRYPTO_AUTH_OP_GENERATE : in parse_table_action_cipher_auth()
3894 status = rte_cryptodev_get_auth_algo_enum(&xform_auth->auth.algo, in parse_table_action_cipher_auth()
3910 xform_auth->auth.key.data = key; in parse_table_action_cipher_auth()
3911 xform_auth->auth.key.length = (uint16_t)len; in parse_table_action_cipher_auth()
3913 key += xform_auth->auth.key.length; in parse_table_action_cipher_auth()
3914 max_key_len -= xform_auth->auth.key.length; in parse_table_action_cipher_auth()
3919 status = parser_read_uint16(&xform_auth->auth.digest_length, in parse_table_action_cipher_auth()
3932 xform_cipher->next = xform_auth; in parse_table_action_cipher_auth()
3935 xform_auth->next = xform_cipher; in parse_table_action_cipher_auth()
3936 return xform_auth; in parse_table_action_cipher_auth()
3945 free(xform_auth); in parse_table_action_cipher_auth()