Lines Matching refs:name
32 .name = "rfc4106(gcm(aes))",
51 .name = "rfc4106(gcm(aes))",
70 .name = "rfc4106(gcm(aes))",
89 .name = "rfc4309(ccm(aes))",
108 .name = "rfc4309(ccm(aes))",
127 .name = "rfc4309(ccm(aes))",
146 .name = "rfc4543(gcm(aes))",
165 .name = "rfc7539esp(chacha20,poly1305)",
180 .name = "digest_null",
199 .name = "hmac(md5)",
219 .name = "hmac(sha1)",
239 .name = "hmac(sha256)",
259 .name = "hmac(sha384)",
278 .name = "hmac(sha512)",
297 .name = "hmac(rmd160)",
317 .name = "xcbc(aes)",
337 .name = "cmac(aes)",
352 .name = "ecb(cipher_null)",
372 .name = "cbc(des)",
393 .name = "cbc(des3_ede)",
414 .name = "cbc(cast5)",
435 .name = "cbc(blowfish)",
456 .name = "cbc(aes)",
477 .name = "cbc(serpent)",
498 .name = "cbc(camellia)",
519 .name = "cbc(twofish)",
540 .name = "rfc3686(ctr(aes))",
563 .name = "deflate",
573 .name = "lzs",
583 .name = "lzjh",
662 status = crypto_has_alg(list[i].name, algo_list->type, in xfrm_find_algo()
703 const char *name = data; in xfrm_alg_name_match() local
705 return name && (!strcmp(name, entry->name) || in xfrm_alg_name_match()
706 (entry->compat && !strcmp(name, entry->compat))); in xfrm_alg_name_match()
709 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe) in xfrm_aalg_get_byname() argument
711 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name, in xfrm_aalg_get_byname()
716 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe) in xfrm_ealg_get_byname() argument
718 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name, in xfrm_ealg_get_byname()
723 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe) in xfrm_calg_get_byname() argument
725 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name, in xfrm_calg_get_byname()
731 const char *name; member
739 const char *name = aead->name; in xfrm_aead_name_match() local
741 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name && in xfrm_aead_name_match()
742 !strcmp(name, entry->name); in xfrm_aead_name_match()
745 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe) in xfrm_aead_get_byname() argument
748 .name = name, in xfrm_aead_get_byname()
787 status = crypto_has_ahash(aalg_list[i].name, 0, 0); in xfrm_probe_algs()
793 status = crypto_has_skcipher(ealg_list[i].name, 0, 0); in xfrm_probe_algs()
799 status = crypto_has_comp(calg_list[i].name, 0, in xfrm_probe_algs()