Lines Matching refs:cipher_tfm
183 } cipher_tfm; member
252 return cc->cipher_tfm.tfms[0]; in any_tfm()
257 return cc->cipher_tfm.tfms_aead[0]; in any_tfm_aead()
1486 skcipher_request_set_tfm(ctx->r.req, cc->cipher_tfm.tfms[key_index]); in crypt_alloc_req_skcipher()
1508 aead_request_set_tfm(ctx->r.req_aead, cc->cipher_tfm.tfms_aead[0]); in crypt_alloc_req_aead()
2279 if (!cc->cipher_tfm.tfms_aead) in crypt_free_tfms_aead()
2282 if (cc->cipher_tfm.tfms_aead[0] && !IS_ERR(cc->cipher_tfm.tfms_aead[0])) { in crypt_free_tfms_aead()
2283 crypto_free_aead(cc->cipher_tfm.tfms_aead[0]); in crypt_free_tfms_aead()
2284 cc->cipher_tfm.tfms_aead[0] = NULL; in crypt_free_tfms_aead()
2287 kfree(cc->cipher_tfm.tfms_aead); in crypt_free_tfms_aead()
2288 cc->cipher_tfm.tfms_aead = NULL; in crypt_free_tfms_aead()
2295 if (!cc->cipher_tfm.tfms) in crypt_free_tfms_skcipher()
2299 if (cc->cipher_tfm.tfms[i] && !IS_ERR(cc->cipher_tfm.tfms[i])) { in crypt_free_tfms_skcipher()
2300 crypto_free_skcipher(cc->cipher_tfm.tfms[i]); in crypt_free_tfms_skcipher()
2301 cc->cipher_tfm.tfms[i] = NULL; in crypt_free_tfms_skcipher()
2304 kfree(cc->cipher_tfm.tfms); in crypt_free_tfms_skcipher()
2305 cc->cipher_tfm.tfms = NULL; in crypt_free_tfms_skcipher()
2321 cc->cipher_tfm.tfms = kcalloc(cc->tfms_count, in crypt_alloc_tfms_skcipher()
2324 if (!cc->cipher_tfm.tfms) in crypt_alloc_tfms_skcipher()
2328 cc->cipher_tfm.tfms[i] = crypto_alloc_skcipher(ciphermode, 0, in crypt_alloc_tfms_skcipher()
2330 if (IS_ERR(cc->cipher_tfm.tfms[i])) { in crypt_alloc_tfms_skcipher()
2331 err = PTR_ERR(cc->cipher_tfm.tfms[i]); in crypt_alloc_tfms_skcipher()
2351 cc->cipher_tfm.tfms = kmalloc(sizeof(struct crypto_aead *), GFP_KERNEL); in crypt_alloc_tfms_aead()
2352 if (!cc->cipher_tfm.tfms) in crypt_alloc_tfms_aead()
2355 cc->cipher_tfm.tfms_aead[0] = crypto_alloc_aead(ciphermode, 0, in crypt_alloc_tfms_aead()
2357 if (IS_ERR(cc->cipher_tfm.tfms_aead[0])) { in crypt_alloc_tfms_aead()
2358 err = PTR_ERR(cc->cipher_tfm.tfms_aead[0]); in crypt_alloc_tfms_aead()
2427 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i], in crypt_setkey()
2430 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i], in crypt_setkey()
2434 r = crypto_skcipher_setkey(cc->cipher_tfm.tfms[i], in crypt_setkey()