Lines Matching refs:name
30 .name = "rfc4106(gcm(aes))",
48 .name = "rfc4106(gcm(aes))",
66 .name = "rfc4106(gcm(aes))",
84 .name = "rfc4309(ccm(aes))",
102 .name = "rfc4309(ccm(aes))",
120 .name = "rfc4309(ccm(aes))",
138 .name = "rfc4543(gcm(aes))",
159 .name = "digest_null",
178 .name = "hmac(md5)",
198 .name = "hmac(sha1)",
218 .name = "hmac(sha256)",
238 .name = "hmac(sha384)",
257 .name = "hmac(sha512)",
276 .name = "hmac(rmd160)",
296 .name = "xcbc(aes)",
316 .name = "cmac(aes)",
331 .name = "ecb(cipher_null)",
351 .name = "cbc(des)",
371 .name = "cbc(des3_ede)",
391 .name = "cbc(cast5)",
411 .name = "cbc(blowfish)",
431 .name = "cbc(aes)",
451 .name = "cbc(serpent)",
471 .name = "cbc(camellia)",
491 .name = "cbc(twofish)",
511 .name = "rfc3686(ctr(aes))",
533 .name = "deflate",
543 .name = "lzs",
553 .name = "lzjh",
637 status = crypto_has_alg(list[i].name, algo_list->type, in xfrm_find_algo()
678 const char *name = data; in xfrm_alg_name_match() local
680 return name && (!strcmp(name, entry->name) || in xfrm_alg_name_match()
681 (entry->compat && !strcmp(name, entry->compat))); in xfrm_alg_name_match()
684 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe) in xfrm_aalg_get_byname() argument
686 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name, in xfrm_aalg_get_byname()
691 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe) in xfrm_ealg_get_byname() argument
693 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name, in xfrm_ealg_get_byname()
698 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe) in xfrm_calg_get_byname() argument
700 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name, in xfrm_calg_get_byname()
706 const char *name; member
714 const char *name = aead->name; in xfrm_aead_name_match() local
716 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name && in xfrm_aead_name_match()
717 !strcmp(name, entry->name); in xfrm_aead_name_match()
720 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe) in xfrm_aead_get_byname() argument
723 .name = name, in xfrm_aead_get_byname()
762 status = crypto_has_hash(aalg_list[i].name, 0, in xfrm_probe_algs()
769 status = crypto_has_ablkcipher(ealg_list[i].name, 0, 0); in xfrm_probe_algs()
775 status = crypto_has_comp(calg_list[i].name, 0, in xfrm_probe_algs()