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",
632 status = crypto_has_alg(list[i].name, algo_list->type, in xfrm_find_algo()
673 const char *name = data; in xfrm_alg_name_match() local
675 return name && (!strcmp(name, entry->name) || in xfrm_alg_name_match()
676 (entry->compat && !strcmp(name, entry->compat))); in xfrm_alg_name_match()
679 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe) in xfrm_aalg_get_byname() argument
681 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name, in xfrm_aalg_get_byname()
686 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe) in xfrm_ealg_get_byname() argument
688 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name, in xfrm_ealg_get_byname()
693 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe) in xfrm_calg_get_byname() argument
695 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name, in xfrm_calg_get_byname()
701 const char *name; member
709 const char *name = aead->name; in xfrm_aead_name_match() local
711 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name && in xfrm_aead_name_match()
712 !strcmp(name, entry->name); in xfrm_aead_name_match()
715 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe) in xfrm_aead_get_byname() argument
718 .name = name, in xfrm_aead_get_byname()
757 status = crypto_has_hash(aalg_list[i].name, 0, in xfrm_probe_algs()
764 status = crypto_has_ablkcipher(ealg_list[i].name, 0, 0); in xfrm_probe_algs()
770 status = crypto_has_comp(calg_list[i].name, 0, in xfrm_probe_algs()