Home
last modified time | relevance | path

Searched refs:algs (Results 1 – 20 of 20) sorted by relevance

/linux/crypto/
H A Dblake2b.c82 static struct shash_alg algs[] = { variable
91 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_blake2b_mod_init()
97 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_blake2b_mod_exit()
H A Dsha3.c90 static struct shash_alg algs[] = { { variable
146 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha3_mod_init()
152 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha3_mod_exit()
H A Dchacha.c103 static struct skcipher_alg algs[] = { variable
156 return crypto_register_skciphers(algs, ARRAY_SIZE(algs)); in crypto_chacha_mod_init()
161 crypto_unregister_skciphers(algs, ARRAY_SIZE(algs)); in crypto_chacha_mod_fini()
H A Dmd5.c177 static struct shash_alg algs[] = { variable
220 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_md5_mod_init()
226 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_md5_mod_exit()
H A Dsha1.c181 static struct shash_alg algs[] = { variable
224 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha1_mod_init()
230 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha1_mod_exit()
H A Dsha256.c318 static struct shash_alg algs[] = { variable
399 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha256_mod_init()
405 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha256_mod_exit()
H A Dsha512.c324 static struct shash_alg algs[] = { variable
405 return crypto_register_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha512_mod_init()
411 crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); in crypto_sha512_mod_exit()
/linux/include/crypto/internal/
H A Drng.h17 int crypto_register_rngs(struct rng_alg *algs, int count);
18 void crypto_unregister_rngs(struct rng_alg *algs, int count);
H A Daead.h162 int crypto_register_aeads(struct aead_alg *algs, int count);
163 void crypto_unregister_aeads(struct aead_alg *algs, int count);
/linux/net/xfrm/
H A Dxfrm_algo.c629 struct xfrm_algo_desc *algs;
635 .algs = aead_list, in aalg_entries()
641 .algs = aalg_list,
647 .algs = ealg_list,
653 .algs = calg_list,
662 struct xfrm_algo_desc *list = algo_list->algs;
649 struct xfrm_algo_desc *algs; global() member
/linux/fs/erofs/
H A Ddecompressor.c452 unsigned long algs, alg; in z_erofs_parse_cfgs() local
459 algs = le16_to_cpu(dsb->u1.available_compr_algs); in z_erofs_parse_cfgs()
460 sbi->available_compr_algs = algs; in z_erofs_parse_cfgs()
461 if (algs & ~Z_EROFS_ALL_COMPR_ALGS) { in z_erofs_parse_cfgs()
463 algs & ~Z_EROFS_ALL_COMPR_ALGS); in z_erofs_parse_cfgs()
469 for_each_set_bit(alg, &algs, Z_EROFS_COMPRESSION_MAX) { in z_erofs_parse_cfgs()
/linux/drivers/crypto/cavium/cpt/
H A Dcptvf_algs.c335 static struct skcipher_alg algs[] = { { variable
428 return crypto_register_skciphers(algs, ARRAY_SIZE(algs)); in cav_register_algs()
433 crypto_unregister_skciphers(algs, ARRAY_SIZE(algs)); in cav_unregister_algs()
/linux/tools/testing/selftests/zram/
H A Dzram_lib.sh153 local algs=$(cat /sys/block/zram${i}/comp_algorithm)
154 echo "supported algs: $algs"
/linux/include/crypto/
H A Dalgapi.h136 int crypto_register_algs(struct crypto_alg *algs, int count);
137 void crypto_unregister_algs(struct crypto_alg *algs, int count);
/linux/Documentation/crypto/
H A Ddevel-algos.rst27 int crypto_register_algs(struct crypto_alg *algs, int count);
35 void crypto_unregister_algs(struct crypto_alg *algs, int count);
154 int crypto_register_shashes(struct shash_alg *algs, int count);
165 void crypto_unregister_shashes(struct shash_alg *algs, int count);
/linux/include/linux/
H A Duacce.h121 const char *algs; member
/linux/drivers/block/drbd/
H A Ddrbd_protocol.h286 struct_group(algs,
H A Ddrbd_receiver.c3706 BUILD_BUG_ON(sizeof(p->algs) != 2 * SHARED_SECRET_MAX); in receive_SyncParam()
3707 memset(&p->algs, 0, sizeof(p->algs)); in receive_SyncParam()
/linux/drivers/misc/uacce/
H A Duacce.c371 return sysfs_emit(buf, "%s\n", uacce->algs); in algorithms_show()
/linux/fs/smb/server/
H A Dsmb2pdu.c1591 __le16 *algs; in decode_compress_ctxt() local
1622 algs = pneg_ctxt->CompressionAlgorithms; in decode_compress_ctxt()
1624 __le16 alg = algs[i]; in decode_compress_ctxt()