Home
last modified time | relevance | path

Searched refs:auth_alg (Results 1 – 12 of 12) sorted by relevance

/f-stack/dpdk/app/test/
H A Dtest_cryptodev_security_pdcp_test_vectors.h612 .auth_alg = 0,
621 .auth_alg = 0,
630 .auth_alg = 0,
639 .auth_alg = 0,
648 .auth_alg = 0,
657 .auth_alg = 0,
666 .auth_alg = 0,
675 .auth_alg = 0,
684 .auth_alg = 0,
693 .auth_alg = 0,
[all …]
H A Dtest_cryptodev_security_pdcp_sdap_test_vectors.h43 .auth_alg = 0,
72 .auth_alg = 0,
101 .auth_alg = 0,
131 .auth_alg = 0,
160 .auth_alg = 0,
190 .auth_alg = 0,
219 .auth_alg = 0,
248 .auth_alg = 0,
1818 .auth_alg = 0,
1848 .auth_alg = 0,
[all …]
H A Dtest_cryptodev.c7755 enum rte_crypto_auth_algorithm auth_alg, in test_pdcp_proto() argument
7809 if (auth_alg != 0) { in test_pdcp_proto()
7812 ut_params->auth_xform.auth.algo = auth_alg; in test_pdcp_proto()
8078 if (pdcp_test_params[i].auth_alg != 0) { in test_pdcp_proto_SGL()
8219 pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], in test_pdcp_proto_cplane_encap()
8235 pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], in test_pdcp_proto_uplane_encap()
8251 pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], in test_pdcp_proto_uplane_encap_with_int()
8267 pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], in test_pdcp_proto_cplane_decap()
8283 pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], in test_pdcp_proto_uplane_decap()
8390 cur_test->param.auth_alg, in test_PDCP_SDAP_PROTO_encap_all()
[all …]
/f-stack/dpdk/drivers/crypto/mvsam/
H A Drte_mrvl_pmd.c113 .auth_alg = SAM_AUTH_NONE },
116 .auth_alg = SAM_AUTH_HMAC_MD5 },
119 .auth_alg = SAM_AUTH_HASH_MD5 },
122 .auth_alg = SAM_AUTH_HMAC_SHA1 },
125 .auth_alg = SAM_AUTH_HASH_SHA1 },
128 .auth_alg = SAM_AUTH_HMAC_SHA2_224 },
131 .auth_alg = SAM_AUTH_HASH_SHA2_224 },
134 .auth_alg = SAM_AUTH_HMAC_SHA2_256 },
137 .auth_alg = SAM_AUTH_HASH_SHA2_256 },
152 .auth_alg = SAM_AUTH_AES_GMAC },
[all …]
/f-stack/dpdk/drivers/crypto/dpaa2_sec/
H A Ddpaa2_sec_dpseci.c2086 session->auth_alg = RTE_CRYPTO_AUTH_SHA1; in dpaa2_sec_auth_init()
2095 session->auth_alg = RTE_CRYPTO_AUTH_MD5; in dpaa2_sec_auth_init()
2716 session->auth_alg = auth_xform->algo; in dpaa2_sec_ipsec_proto_init()
2728 switch (session->auth_alg) { in dpaa2_sec_ipsec_proto_init()
2773 session->auth_alg); in dpaa2_sec_ipsec_proto_init()
2777 session->auth_alg); in dpaa2_sec_ipsec_proto_init()
3197 session->auth_alg = auth_xform->algo; in dpaa2_sec_set_pdcp_session()
3201 session->auth_alg = 0; in dpaa2_sec_set_pdcp_session()
3208 if (session->auth_alg) { in dpaa2_sec_set_pdcp_session()
3209 switch (session->auth_alg) { in dpaa2_sec_set_pdcp_session()
[all …]
H A Ddpaa2_sec_priv.h166 enum rte_crypto_auth_algorithm auth_alg; /*!< Authentication Algorithm*/ member
/f-stack/dpdk/drivers/crypto/caam_jr/
H A Dcaam_jr.c159 (ses->auth_alg == RTE_CRYPTO_AUTH_NULL)); in is_cipher_only()
166 (ses->auth_alg != RTE_CRYPTO_AUTH_NULL)); in is_auth_only()
173 (ses->auth_alg == 0) && in is_aead()
181 (ses->auth_alg != RTE_CRYPTO_AUTH_NULL) && in is_auth_cipher()
206 switch (ses->auth_alg) { in caam_auth_alg()
1579 session->auth_alg = xform->auth.algo; in caam_jr_auth_init()
1642 session->auth_alg = RTE_CRYPTO_AUTH_NULL; in caam_jr_set_session_parameters()
1794 session->auth_alg = RTE_CRYPTO_AUTH_SHA1_HMAC; in caam_jr_set_ipsec_session()
1797 session->auth_alg = RTE_CRYPTO_AUTH_MD5_HMAC; in caam_jr_set_ipsec_session()
1809 session->auth_alg = RTE_CRYPTO_AUTH_AES_CMAC; in caam_jr_set_ipsec_session()
[all …]
H A Dcaam_jr_pvt.h114 enum rte_crypto_auth_algorithm auth_alg; /* Authentication Algorithm*/ member
/f-stack/dpdk/drivers/crypto/dpaa_sec/
H A Ddpaa_sec.c219 (ses->auth_alg == 0) && in is_aead()
254 if (ses->auth_alg) { in dpaa_sec_prep_pdcp_cdb()
489 switch (ses->auth_alg) { in dpaa_sec_prep_cdb()
2062 session->auth_alg = xform->auth.algo; in dpaa_sec_auth_init()
2166 session->auth_alg = auth_xform->algo; in dpaa_sec_chain_init()
2589 session->auth_alg = auth_xform->algo; in dpaa_sec_ipsec_proto_init()
2597 switch (session->auth_alg) { in dpaa_sec_ipsec_proto_init()
2642 session->auth_alg); in dpaa_sec_ipsec_proto_init()
2646 session->auth_alg); in dpaa_sec_ipsec_proto_init()
2949 session->auth_alg); in dpaa_sec_set_pdcp_session()
[all …]
H A Ddpaa_sec.h127 enum rte_crypto_auth_algorithm auth_alg; /*!< Authentication Algorithm*/ member
/f-stack/dpdk/drivers/crypto/bcmfs/
H A Dbcmfs_sym_engine.c219 spu2_hash_xlate(enum rte_crypto_auth_algorithm auth_alg, in spu2_hash_xlate() argument
226 switch (auth_alg) { in spu2_hash_xlate()
771 enum rte_crypto_auth_algorithm auth_alg, in bcmfs_crypto_build_chain_request() argument
811 ret = spu2_hash_xlate(auth_alg, auth_key, &spu2_auth_type, in bcmfs_crypto_build_chain_request()
/f-stack/dpdk/drivers/common/dpaax/caamflib/desc/
H A Dpdcp.h280 rta_inline_pdcp_query(enum auth_type_pdcp auth_alg, in rta_inline_pdcp_query() argument
303 auth_alg == PDCP_AUTH_TYPE_AES) || in rta_inline_pdcp_query()
305 auth_alg == PDCP_AUTH_TYPE_SNOW) || in rta_inline_pdcp_query()
307 auth_alg == PDCP_AUTH_TYPE_SNOW) || in rta_inline_pdcp_query()
309 auth_alg == PDCP_AUTH_TYPE_SNOW))) { in rta_inline_pdcp_query()