Lines Matching defs:fbk_cipher
70 struct crypto_aead *fbk_cipher;
219 aead_request_set_tfm(subreq, tfm_ctx->fbk_cipher);
266 tfm_ctx->fbk_cipher->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
267 tfm_ctx->fbk_cipher->base.crt_flags |= (aead->base.crt_flags &
270 return crypto_aead_setkey(tfm_ctx->fbk_cipher, key, keylen);
281 return crypto_aead_setauthsize(tfm_ctx->fbk_cipher, authsize);
321 tfm_ctx->fbk_cipher = crypto_alloc_aead(drv_ctx->alg.aead.base.base.cra_name,
325 if (IS_ERR(tfm_ctx->fbk_cipher)) {
328 return PTR_ERR(tfm_ctx->fbk_cipher);
334 crypto_aead_reqsize(tfm_ctx->fbk_cipher)));
344 if (tfm_ctx->fbk_cipher) {
345 crypto_free_aead(tfm_ctx->fbk_cipher);
346 tfm_ctx->fbk_cipher = NULL;