Lines Matching refs:skreq
48 struct skcipher_request skreq;
289 struct skcipher_request *skreq = &pctx->skreq;
308 skcipher_request_set_tfm(skreq, ctx->ctr);
309 skcipher_request_set_callback(skreq, pctx->flags,
311 skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv);
312 err = crypto_skcipher_encrypt(skreq);
349 struct skcipher_request *skreq = &pctx->skreq;
373 skcipher_request_set_tfm(skreq, ctx->ctr);
374 skcipher_request_set_callback(skreq, pctx->flags,
376 skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv);
377 err = crypto_skcipher_decrypt(skreq);