Lines Matching refs:child_req

127 	struct akcipher_request child_req;  member
209 len = req_ctx->child_req.dst_len; in pkcs1pad_encrypt_sign_complete()
282 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_encrypt()
283 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_encrypt()
287 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_encrypt()
290 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_encrypt()
310 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_decrypt_complete()
381 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_decrypt()
382 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_decrypt()
386 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_decrypt()
390 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_decrypt()
439 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_sign()
440 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_sign()
444 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_sign()
447 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_sign()
472 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_verify_complete()
571 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_verify()
572 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_verify()
576 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_verify()
579 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_verify()