Lines Matching defs:skreq
58 struct skcipher_request skreq; /* Must be last */
156 struct skcipher_request *skreq = &pctx->skreq;
161 skcipher_request_set_tfm(skreq, ctx->ctr);
162 skcipher_request_set_crypt(skreq, pctx->src, dst,
244 struct skcipher_request *skreq = &pctx->skreq;
249 skcipher_request_set_callback(skreq, flags, gcm_encrypt_done, req);
251 return crypto_skcipher_encrypt(skreq) ?: gcm_add_auth_tag(req);
283 struct skcipher_request *skreq = &pctx->skreq;
291 skcipher_request_set_callback(skreq, aead_request_flags(req),
293 return crypto_skcipher_decrypt(skreq) ?: crypto_gcm_verify(req);