Lines Matching refs:skreq
169 SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null);
171 skcipher_request_set_sync_tfm(skreq, ctx->null);
172 skcipher_request_set_callback(skreq, aead_request_flags(req),
174 skcipher_request_set_crypt(skreq, req->src, req->dst, len, NULL);
176 return crypto_skcipher_encrypt(skreq);
184 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
205 skcipher_request_set_tfm(skreq, enc);
206 skcipher_request_set_callback(skreq, aead_request_flags(req),
208 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
210 err = crypto_skcipher_encrypt(skreq);
224 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
251 skcipher_request_set_tfm(skreq, ctx->enc);
252 skcipher_request_set_callback(skreq, flags,
254 skcipher_request_set_crypt(skreq, dst, dst, cryptlen, req->iv);
256 return crypto_skcipher_decrypt(skreq);