Lines Matching refs:skreq
181 SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null);
183 skcipher_request_set_sync_tfm(skreq, ctx->null);
184 skcipher_request_set_callback(skreq, aead_request_flags(req),
186 skcipher_request_set_crypt(skreq, req->src, req->dst, req->assoclen,
189 return crypto_skcipher_encrypt(skreq);
201 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
217 skcipher_request_set_tfm(skreq, enc);
218 skcipher_request_set_callback(skreq, aead_request_flags(req),
220 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
222 err = crypto_skcipher_encrypt(skreq);
238 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
255 skcipher_request_set_tfm(skreq, ctx->enc);
256 skcipher_request_set_callback(skreq, flags,
258 skcipher_request_set_crypt(skreq, src, dst,
261 return crypto_skcipher_decrypt(skreq);