Lines Matching refs:name
28 .name = "rfc4106(gcm(aes))",
47 .name = "rfc4106(gcm(aes))",
66 .name = "rfc4106(gcm(aes))",
85 .name = "rfc4309(ccm(aes))",
104 .name = "rfc4309(ccm(aes))",
123 .name = "rfc4309(ccm(aes))",
142 .name = "rfc4543(gcm(aes))",
161 .name = "rfc7539esp(chacha20,poly1305)",
176 .name = "digest_null",
195 .name = "hmac(md5)",
215 .name = "hmac(sha1)",
235 .name = "hmac(sha256)",
255 .name = "hmac(sha384)",
274 .name = "hmac(sha512)",
293 .name = "hmac(rmd160)",
313 .name = "xcbc(aes)",
333 .name = "cmac(aes)",
348 .name = "ecb(cipher_null)",
368 .name = "cbc(des)",
389 .name = "cbc(des3_ede)",
410 .name = "cbc(cast5)",
431 .name = "cbc(blowfish)",
452 .name = "cbc(aes)",
473 .name = "cbc(serpent)",
494 .name = "cbc(camellia)",
515 .name = "cbc(twofish)",
536 .name = "rfc3686(ctr(aes))",
559 .name = "deflate",
569 .name = "lzs",
579 .name = "lzjh",
658 status = crypto_has_alg(list[i].name, algo_list->type, in xfrm_find_algo()
699 const char *name = data; in xfrm_alg_name_match() local
701 return name && (!strcmp(name, entry->name) || in xfrm_alg_name_match()
702 (entry->compat && !strcmp(name, entry->compat))); in xfrm_alg_name_match()
705 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe) in xfrm_aalg_get_byname() argument
707 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name, in xfrm_aalg_get_byname()
712 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe) in xfrm_ealg_get_byname() argument
714 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name, in xfrm_ealg_get_byname()
719 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe) in xfrm_calg_get_byname() argument
721 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name, in xfrm_calg_get_byname()
727 const char *name; member
735 const char *name = aead->name; in xfrm_aead_name_match() local
737 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name && in xfrm_aead_name_match()
738 !strcmp(name, entry->name); in xfrm_aead_name_match()
741 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe) in xfrm_aead_get_byname() argument
744 .name = name, in xfrm_aead_get_byname()
783 status = crypto_has_ahash(aalg_list[i].name, 0, 0); in xfrm_probe_algs()
789 status = crypto_has_skcipher(ealg_list[i].name, 0, 0); in xfrm_probe_algs()
795 status = crypto_has_comp(calg_list[i].name, 0, in xfrm_probe_algs()