Home
last modified time | relevance | path

Searched refs:xform_auth (Results 1 – 3 of 3) sorted by relevance

/dpdk/lib/vhost/
H A Dvhost_crypto.c278 struct rte_crypto_sym_xform *xform_cipher, *xform_auth; in transform_chain_param() local
283 xform_auth = xforms; in transform_chain_param()
286 xform_auth->auth.op = RTE_CRYPTO_AUTH_OP_VERIFY; in transform_chain_param()
290 xform_auth = xforms->next; in transform_chain_param()
292 xform_auth->auth.op = RTE_CRYPTO_AUTH_OP_GENERATE; in transform_chain_param()
319 xform_auth->type = RTE_CRYPTO_SYM_XFORM_AUTH; in transform_chain_param()
320 ret = auth_algo_transform(param->hash_algo, &xform_auth->auth.algo); in transform_chain_param()
329 xform_auth->auth.digest_length = param->digest_len; in transform_chain_param()
330 xform_auth->auth.key.length = param->auth_key_len; in transform_chain_param()
331 xform_auth->auth.key.data = param->auth_key_buf; in transform_chain_param()
/dpdk/drivers/net/softnic/
H A Drte_eth_softnic_cli.c4584 struct rte_crypto_sym_xform *xform_auth; in parse_table_action_cipher_auth() local
4594 xform_auth = calloc(1, sizeof(*xform_auth)); in parse_table_action_cipher_auth()
4595 if (xform_auth == NULL) in parse_table_action_cipher_auth()
4619 xform_auth->auth.key.data = key; in parse_table_action_cipher_auth()
4620 xform_auth->auth.key.length = (uint16_t)len; in parse_table_action_cipher_auth()
4622 key += xform_auth->auth.key.length; in parse_table_action_cipher_auth()
4623 max_key_len -= xform_auth->auth.key.length; in parse_table_action_cipher_auth()
4641 xform_cipher->next = xform_auth; in parse_table_action_cipher_auth()
4644 xform_auth->next = xform_cipher; in parse_table_action_cipher_auth()
4645 return xform_auth; in parse_table_action_cipher_auth()
[all …]
/dpdk/examples/ip_pipeline/
H A Dcli.c3875 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()
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()
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()
[all …]