Lines Matching refs:skreq
171 SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null);
173 skcipher_request_set_sync_tfm(skreq, ctx->null);
174 skcipher_request_set_callback(skreq, aead_request_flags(req),
176 skcipher_request_set_crypt(skreq, req->src, req->dst, len, NULL);
178 return crypto_skcipher_encrypt(skreq);
186 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
207 skcipher_request_set_tfm(skreq, enc);
208 skcipher_request_set_callback(skreq, aead_request_flags(req),
210 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
212 err = crypto_skcipher_encrypt(skreq);
226 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
253 skcipher_request_set_tfm(skreq, ctx->enc);
254 skcipher_request_set_callback(skreq, flags,
256 skcipher_request_set_crypt(skreq, dst, dst, cryptlen, req->iv);
258 return crypto_skcipher_decrypt(skreq);