Home
last modified time | relevance | path

Searched refs:cipher_alg (Results 1 – 2 of 2) sorted by relevance

/crypto/
Dcipher.c22 struct cipher_alg *cia = &tfm->__crt_alg->cra_cipher; in setkey_unaligned()
44 struct cipher_alg *cia = &tfm->__crt_alg->cra_cipher; in setkey()
78 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in cipher_encrypt_unaligned()
92 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in cipher_decrypt_unaligned()
105 struct cipher_alg *cipher = &tfm->__crt_alg->cra_cipher; in crypto_init_cipher_ops()
Dskcipher.c1174 struct crypto_alg *cipher_alg; in skcipher_alloc_instance_simple() local
1191 cipher_alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, mask); in skcipher_alloc_instance_simple()
1192 if (IS_ERR(cipher_alg)) in skcipher_alloc_instance_simple()
1193 return ERR_CAST(cipher_alg); in skcipher_alloc_instance_simple()
1203 cipher_alg); in skcipher_alloc_instance_simple()
1207 err = crypto_init_spawn(spawn, cipher_alg, in skcipher_alloc_instance_simple()
1215 inst->alg.base.cra_blocksize = cipher_alg->cra_blocksize; in skcipher_alloc_instance_simple()
1216 inst->alg.base.cra_alignmask = cipher_alg->cra_alignmask; in skcipher_alloc_instance_simple()
1217 inst->alg.base.cra_priority = cipher_alg->cra_priority; in skcipher_alloc_instance_simple()
1218 inst->alg.min_keysize = cipher_alg->cra_cipher.cia_min_keysize; in skcipher_alloc_instance_simple()
[all …]