Lines Matching refs:abreq
74 struct ablkcipher_request abreq; member
548 struct ablkcipher_request *abreq = &pctx->u.abreq; in crypto_gcm_encrypt() local
552 crypto_gcm_init_crypt(abreq, req, req->cryptlen); in crypto_gcm_encrypt()
553 ablkcipher_request_set_callback(abreq, aead_request_flags(req), in crypto_gcm_encrypt()
560 err = crypto_ablkcipher_encrypt(abreq); in crypto_gcm_encrypt()
602 struct ablkcipher_request *abreq = &pctx->u.abreq; in gcm_dec_hash_done() local
606 ablkcipher_request_set_callback(abreq, aead_request_flags(req), in gcm_dec_hash_done()
608 crypto_gcm_init_crypt(abreq, req, gctx->cryptlen); in gcm_dec_hash_done()
609 err = crypto_ablkcipher_decrypt(abreq); in gcm_dec_hash_done()
623 struct ablkcipher_request *abreq = &pctx->u.abreq; in crypto_gcm_decrypt() local
641 ablkcipher_request_set_callback(abreq, aead_request_flags(req), in crypto_gcm_decrypt()
643 crypto_gcm_init_crypt(abreq, req, cryptlen); in crypto_gcm_decrypt()
644 err = crypto_ablkcipher_decrypt(abreq); in crypto_gcm_decrypt()