Symbol: crypto_alloc_skcipher
arch/powerpc/crypto/aes_cbc.c
33
fallback = crypto_alloc_skcipher("cbc(aes)", 0,
arch/powerpc/crypto/aes_ctr.c
32
fallback = crypto_alloc_skcipher("ctr(aes)", 0,
arch/powerpc/crypto/aes_xts.c
35
fallback = crypto_alloc_skcipher("xts(aes)", 0,
arch/s390/crypto/aes_s390.c
157
sctx->fallback.skcipher = crypto_alloc_skcipher(name, 0,
arch/s390/crypto/aes_s390.c
389
xts_ctx->fallback = crypto_alloc_skcipher(name, 0,
crypto/algif_skcipher.c
345
return crypto_alloc_skcipher(name, type, mask);
crypto/cryptd.c
966
tfm = crypto_alloc_skcipher(cryptd_alg_name, type, mask);
crypto/drbg.c
1535
sk_tfm = crypto_alloc_skcipher(ctr_name, 0, 0);
crypto/skcipher.c
641
EXPORT_SYMBOL_GPL(crypto_alloc_skcipher);
crypto/tcrypt.c
1082
tfm = crypto_alloc_skcipher(algo, 0, 0);
crypto/tcrypt.c
1313
tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
crypto/testmgr.c
3096
generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
crypto/testmgr.c
3228
tfm = crypto_alloc_skcipher(driver, type, mask);
drivers/crypto/allwinner/sun4i-ss/sun4i-ss-cipher.c
547
op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
429
op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c
401
op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/amlogic/amlogic-gxl-cipher.c
323
op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/aspeed/aspeed-hace-crypto.c
648
ctx->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_ASYNC |
drivers/crypto/atmel-aes.c
1721
ctx->fallback_tfm = crypto_alloc_skcipher(tfm_name, 0,
drivers/crypto/caam/caamalg.c
3739
fallback = crypto_alloc_skcipher(tfm_name, 0,
drivers/crypto/caam/caamalg_qi.c
2518
fallback = crypto_alloc_skcipher(tfm_name, 0,
drivers/crypto/caam/caamalg_qi2.c
1618
fallback = crypto_alloc_skcipher(tfm_name, 0,
drivers/crypto/ccp/ccp-crypto-aes-xts.c
205
fallback_tfm = crypto_alloc_skcipher("xts(aes)", 0,
drivers/crypto/ccree/cc_cipher.c
184
crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK | CRYPTO_ALG_ASYNC);
drivers/crypto/chelsio/chcr_algo.c
1443
ablkctx->sw_cipher = crypto_alloc_skcipher(alg->base.cra_name, 0,
drivers/crypto/chelsio/chcr_algo.c
1465
ablkctx->sw_cipher = crypto_alloc_skcipher("ctr(aes)", 0,
drivers/crypto/gemini/sl3516-ce-cipher.c
328
op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/geode-aes.c
244
crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK |
drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
639
ctx->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/intel/qat/qat_common/qat_algs.c
1142
ctx->ftfm = crypto_alloc_skcipher("xts(aes)", 0,
drivers/crypto/marvell/octeontx2/otx2_cptvf_algs.c
522
crypto_alloc_skcipher(alg->cra_name, 0,
drivers/crypto/mxs-dcp.c
572
blk = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/omap-aes.c
632
blk = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/qce/skcipher.c
332
ctx->fallback = crypto_alloc_skcipher(crypto_tfm_alg_name(&tfm->base),
drivers/crypto/rockchip/rk3288_crypto_skcipher.c
440
ctx->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/sa2ul.c
868
child = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
drivers/crypto/sahara.c
713
ctx->fallback = crypto_alloc_skcipher(name, 0,
drivers/crypto/starfive/jh7110-aes.c
614
ctx->skcipher_fbk = crypto_alloc_skcipher(alg_name, 0,
drivers/md/dm-crypt.c
2343
cc->cipher_tfm.tfms[i] = crypto_alloc_skcipher(ciphermode, 0,
drivers/md/dm-crypt.c
780
elephant->tfm = crypto_alloc_skcipher("ecb(aes)", 0,
drivers/md/dm-integrity.c
4450
ic->journal_crypt = crypto_alloc_skcipher(ic->journal_crypt_alg.alg_string, 0, CRYPTO_ALG_ALLOCATES_MEMORY);
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c
59
tfm = crypto_alloc_skcipher("ecb(aes)", 0, 0);
fs/ecryptfs/crypto.c
1457
*key_tfm = crypto_alloc_skcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC);
fs/ecryptfs/crypto.c
492
crypt_stat->tfm = crypto_alloc_skcipher(full_alg_name, 0, 0);
include/crypto/skcipher.h
279
struct crypto_skcipher *crypto_alloc_skcipher(const char *alg_name,
net/mac80211/fils_aead.c
116
tfm2 = crypto_alloc_skcipher("ctr(aes)", 0, CRYPTO_ALG_ASYNC);
net/mac80211/fils_aead.c
175
tfm2 = crypto_alloc_skcipher("ctr(aes)", 0, CRYPTO_ALG_ASYNC);
net/rxrpc/rxkad.c
68
ci = crypto_alloc_skcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
security/keys/encrypted-keys/encrypted.c
364
tfm = crypto_alloc_skcipher(blkcipher_alg, 0, CRYPTO_ALG_ASYNC);
security/keys/encrypted-keys/encrypted.c
86
tfm = crypto_alloc_skcipher(blkcipher_alg, 0, CRYPTO_ALG_ASYNC);
security/keys/trusted-keys/trusted_dcp.c
91
tfm = crypto_alloc_skcipher("ecb-paes-dcp", CRYPTO_ALG_INTERNAL,
tools/testing/crypto/chacha20-s390/test-cipher.c
135
skcipher = crypto_alloc_skcipher(name, 0, 0);