Lines Matching refs:child_req
104 struct akcipher_request child_req; member
186 len = req_ctx->child_req.dst_len; in pkcs1pad_encrypt_sign_complete()
262 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_encrypt()
263 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_encrypt()
267 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_encrypt()
270 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_encrypt()
290 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_decrypt_complete()
363 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_decrypt()
364 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_decrypt()
368 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_decrypt()
372 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_decrypt()
421 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_sign()
422 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_sign()
426 akcipher_request_set_crypt(&req_ctx->child_req, req_ctx->in_sg, in pkcs1pad_sign()
429 err = crypto_akcipher_decrypt(&req_ctx->child_req); in pkcs1pad_sign()
452 dst_len = req_ctx->child_req.dst_len; in pkcs1pad_verify_complete()
553 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child); in pkcs1pad_verify()
554 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags, in pkcs1pad_verify()
558 akcipher_request_set_crypt(&req_ctx->child_req, req->src, in pkcs1pad_verify()
562 err = crypto_akcipher_encrypt(&req_ctx->child_req); in pkcs1pad_verify()