Lines Matching refs:name

30 	.name = "rfc4106(gcm(aes))",
49 .name = "rfc4106(gcm(aes))",
68 .name = "rfc4106(gcm(aes))",
87 .name = "rfc4309(ccm(aes))",
106 .name = "rfc4309(ccm(aes))",
125 .name = "rfc4309(ccm(aes))",
144 .name = "rfc4543(gcm(aes))",
163 .name = "rfc7539esp(chacha20,poly1305)",
178 .name = "digest_null",
197 .name = "hmac(md5)",
217 .name = "hmac(sha1)",
237 .name = "hmac(sha256)",
257 .name = "hmac(sha384)",
276 .name = "hmac(sha512)",
295 .name = "hmac(rmd160)",
315 .name = "xcbc(aes)",
335 .name = "cmac(aes)",
350 .name = "ecb(cipher_null)",
370 .name = "cbc(des)",
391 .name = "cbc(des3_ede)",
412 .name = "cbc(cast5)",
433 .name = "cbc(blowfish)",
454 .name = "cbc(aes)",
475 .name = "cbc(serpent)",
496 .name = "cbc(camellia)",
517 .name = "cbc(twofish)",
538 .name = "rfc3686(ctr(aes))",
561 .name = "deflate",
571 .name = "lzs",
581 .name = "lzjh",
660 status = crypto_has_alg(list[i].name, algo_list->type, in xfrm_find_algo()
701 const char *name = data; in xfrm_alg_name_match() local
703 return name && (!strcmp(name, entry->name) || in xfrm_alg_name_match()
704 (entry->compat && !strcmp(name, entry->compat))); in xfrm_alg_name_match()
707 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe) in xfrm_aalg_get_byname() argument
709 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name, in xfrm_aalg_get_byname()
714 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe) in xfrm_ealg_get_byname() argument
716 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name, in xfrm_ealg_get_byname()
721 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe) in xfrm_calg_get_byname() argument
723 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name, in xfrm_calg_get_byname()
729 const char *name; member
737 const char *name = aead->name; in xfrm_aead_name_match() local
739 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name && in xfrm_aead_name_match()
740 !strcmp(name, entry->name); in xfrm_aead_name_match()
743 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe) in xfrm_aead_get_byname() argument
746 .name = name, in xfrm_aead_get_byname()
785 status = crypto_has_hash(aalg_list[i].name, 0, in xfrm_probe_algs()
792 status = crypto_has_ablkcipher(ealg_list[i].name, 0, 0); in xfrm_probe_algs()
798 status = crypto_has_comp(calg_list[i].name, 0, in xfrm_probe_algs()