Lines Matching refs:skreq
49 struct skcipher_request skreq;
290 struct skcipher_request *skreq = &pctx->skreq;
309 skcipher_request_set_tfm(skreq, ctx->ctr);
310 skcipher_request_set_callback(skreq, pctx->flags,
312 skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv);
313 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);