Lines Matching refs:child_req
103 struct akcipher_request child_req; member
185 len = req_ctx->child_req.dst_len; in pkcs1pad_encrypt_sign_complete()
261 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_encrypt()
262 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_encrypt()
266 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_encrypt()
269 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_encrypt()
289 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_decrypt_complete()
362 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_decrypt()
363 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_decrypt()
367 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_decrypt()
371 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_decrypt()
420 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_sign()
421 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_sign()
425 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_sign()
428 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_sign()
451 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_verify_complete()
550 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_verify()
551 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_verify()
555 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_verify()
559 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_verify()