Lines Matching defs:skreq
164 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
185 skcipher_request_set_tfm(skreq, enc);
186 skcipher_request_set_callback(skreq, aead_request_flags(req),
188 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
190 err = crypto_skcipher_encrypt(skreq);
204 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
237 skcipher_request_set_tfm(skreq, ctx->enc);
238 skcipher_request_set_callback(skreq, flags,
240 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
242 return crypto_skcipher_decrypt(skreq);