Lines Matching defs:fbk_cipher
70 struct crypto_aead *fbk_cipher;
219 aead_request_set_tfm(subreq, tfm_ctx->fbk_cipher);
263 tfm_ctx->fbk_cipher->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
264 tfm_ctx->fbk_cipher->base.crt_flags |= (aead->base.crt_flags &
267 return crypto_aead_setkey(tfm_ctx->fbk_cipher, key, keylen);
278 return crypto_aead_setauthsize(tfm_ctx->fbk_cipher, authsize);
322 tfm_ctx->fbk_cipher = crypto_alloc_aead(drv_ctx->alg.aead.base.cra_name,
326 if (IS_ERR(tfm_ctx->fbk_cipher)) {
329 return PTR_ERR(tfm_ctx->fbk_cipher);
335 crypto_aead_reqsize(tfm_ctx->fbk_cipher)));
345 if (tfm_ctx->fbk_cipher) {
346 crypto_free_aead(tfm_ctx->fbk_cipher);
347 tfm_ctx->fbk_cipher = NULL;