Lines Matching refs:skreq
180 SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null);
182 skcipher_request_set_sync_tfm(skreq, ctx->null);
183 skcipher_request_set_callback(skreq, aead_request_flags(req),
185 skcipher_request_set_crypt(skreq, req->src, req->dst, req->assoclen,
188 return crypto_skcipher_encrypt(skreq);
200 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
216 skcipher_request_set_tfm(skreq, enc);
217 skcipher_request_set_callback(skreq, aead_request_flags(req),
219 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
221 err = crypto_skcipher_encrypt(skreq);
237 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
254 skcipher_request_set_tfm(skreq, ctx->enc);
255 skcipher_request_set_callback(skreq, flags,
257 skcipher_request_set_crypt(skreq, src, dst,
260 return crypto_skcipher_decrypt(skreq);