/third_party/node/deps/openssl/openssl/apps/ |
H A D | pkeyutl.c | 116 int keysize = -1, pkey_op = EVP_PKEY_OP_SIGN, key_type = KEY_PRIVKEY; in pkeyutl_main() 202 pkey_op = EVP_PKEY_OP_SIGN; in pkeyutl_main() 263 if (rawin && pkey_op != EVP_PKEY_OP_SIGN && pkey_op != EVP_PKEY_OP_VERIFY) { in pkeyutl_main() 444 && (pkey_op == EVP_PKEY_OP_SIGN in pkeyutl_main() 537 if (((pkey_op == EVP_PKEY_OP_SIGN) || (pkey_op == EVP_PKEY_OP_DECRYPT) in init_ctx() 610 case EVP_PKEY_OP_SIGN: in init_ctx() 623 case EVP_PKEY_OP_SIGN: in init_ctx() 691 case EVP_PKEY_OP_SIGN: in do_keyop() 741 case EVP_PKEY_OP_SIGN: in do_raw_keyop() 775 case EVP_PKEY_OP_SIGN in do_raw_keyop() [all...] |
/third_party/openssl/apps/ |
H A D | pkeyutl.c | 116 int keysize = -1, pkey_op = EVP_PKEY_OP_SIGN, key_type = KEY_PRIVKEY; in pkeyutl_main() 202 pkey_op = EVP_PKEY_OP_SIGN; in pkeyutl_main() 263 if (rawin && pkey_op != EVP_PKEY_OP_SIGN && pkey_op != EVP_PKEY_OP_VERIFY) { in pkeyutl_main() 444 && (pkey_op == EVP_PKEY_OP_SIGN in pkeyutl_main() 537 if (((pkey_op == EVP_PKEY_OP_SIGN) || (pkey_op == EVP_PKEY_OP_DECRYPT) in init_ctx() 610 case EVP_PKEY_OP_SIGN: in init_ctx() 623 case EVP_PKEY_OP_SIGN: in init_ctx() 691 case EVP_PKEY_OP_SIGN: in do_keyop() 741 case EVP_PKEY_OP_SIGN: in do_raw_keyop() 775 case EVP_PKEY_OP_SIGN in do_raw_keyop() [all...] |
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | signature.c | 528 case EVP_PKEY_OP_SIGN: in evp_pkey_signature_init() 575 || (operation == EVP_PKEY_OP_SIGN && ctx->pmeth->sign == NULL) in evp_pkey_signature_init() 584 case EVP_PKEY_OP_SIGN: in evp_pkey_signature_init() 622 return evp_pkey_signature_init(ctx, EVP_PKEY_OP_SIGN, NULL); in EVP_PKEY_sign_init() 627 return evp_pkey_signature_init(ctx, EVP_PKEY_OP_SIGN, params); in EVP_PKEY_sign_init_ex() 641 if (ctx->operation != EVP_PKEY_OP_SIGN) { in EVP_PKEY_sign()
|
H A D | m_sigver.c | 340 ctx->pctx->operation = EVP_PKEY_OP_SIGN; in do_sigver_init()
|
/third_party/openssl/crypto/evp/ |
H A D | signature.c | 528 case EVP_PKEY_OP_SIGN: in evp_pkey_signature_init() 575 || (operation == EVP_PKEY_OP_SIGN && ctx->pmeth->sign == NULL) in evp_pkey_signature_init() 584 case EVP_PKEY_OP_SIGN: in evp_pkey_signature_init() 622 return evp_pkey_signature_init(ctx, EVP_PKEY_OP_SIGN, NULL); in EVP_PKEY_sign_init() 627 return evp_pkey_signature_init(ctx, EVP_PKEY_OP_SIGN, params); in EVP_PKEY_sign_init_ex() 641 if (ctx->operation != EVP_PKEY_OP_SIGN) { in EVP_PKEY_sign()
|
H A D | m_sigver.c | 340 ctx->pctx->operation = EVP_PKEY_OP_SIGN; in do_sigver_init()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | evp.rs | 164 pub const EVP_PKEY_OP_SIGN: c_int = 1 << 4; consts 173 pub const EVP_PKEY_OP_SIGN: c_int = 1 << 3; consts 184 pub const EVP_PKEY_OP_TYPE_SIG: c_int = EVP_PKEY_OP_SIGN
|
H A D | rsa.rs | 35 EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY, in EVP_PKEY_CTX_set_rsa_pss_saltlen()
|
/third_party/node/deps/openssl/openssl/providers/implementations/signature/ |
H A D | ecdsa_sig.c | 143 if (!ossl_ec_check_key(ctx->libctx, ec, operation == EVP_PKEY_OP_SIGN)) in ecdsa_signverify_init() 161 return ecdsa_signverify_init(vctx, ec, params, EVP_PKEY_OP_SIGN); in ecdsa_sign_init() 240 sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in ecdsa_setup_md() 315 EVP_PKEY_OP_SIGN); in ecdsa_digest_sign_init()
|
H A D | dsa_sig.c | 127 int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in dsa_setup_md() 202 operation == EVP_PKEY_OP_SIGN)) { in dsa_signverify_init() 222 return dsa_signverify_init(vpdsactx, vdsa, params, EVP_PKEY_OP_SIGN); in dsa_sign_init() 312 EVP_PKEY_OP_SIGN); in dsa_digest_sign_init()
|
H A D | rsa_sig.c | 291 int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in rsa_setup_md() 511 return rsa_signverify_init(vprsactx, vrsa, params, EVP_PKEY_OP_SIGN); in rsa_sign_init() 900 params, EVP_PKEY_OP_SIGN); in rsa_digest_sign_init() 1224 & (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY)) == 0) { in rsa_set_ctx_params()
|
/third_party/openssl/providers/implementations/signature/ |
H A D | ecdsa_sig.c | 143 if (!ossl_ec_check_key(ctx->libctx, ec, operation == EVP_PKEY_OP_SIGN)) in ecdsa_signverify_init() 161 return ecdsa_signverify_init(vctx, ec, params, EVP_PKEY_OP_SIGN); in ecdsa_sign_init() 240 sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in ecdsa_setup_md() 315 EVP_PKEY_OP_SIGN); in ecdsa_digest_sign_init()
|
H A D | dsa_sig.c | 127 int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in dsa_setup_md() 202 operation == EVP_PKEY_OP_SIGN)) { in dsa_signverify_init() 222 return dsa_signverify_init(vpdsactx, vdsa, params, EVP_PKEY_OP_SIGN); in dsa_sign_init() 312 EVP_PKEY_OP_SIGN); in dsa_digest_sign_init()
|
H A D | rsa_sig.c | 291 int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN); in rsa_setup_md() 511 return rsa_signverify_init(vprsactx, vrsa, params, EVP_PKEY_OP_SIGN); in rsa_sign_init() 900 params, EVP_PKEY_OP_SIGN); in rsa_digest_sign_init() 1223 & (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY)) == 0) { in rsa_set_ctx_params()
|
/third_party/node/deps/openssl/openssl/providers/common/ |
H A D | securitycheck.c | 34 case EVP_PKEY_OP_SIGN: in ossl_rsa_check_key()
|
/third_party/openssl/providers/common/ |
H A D | securitycheck.c | 34 case EVP_PKEY_OP_SIGN: in ossl_rsa_check_key()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | rsa.h | 102 RSA_pkey_ctx_ctrl(ctx, (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \ 118 RSA_pkey_ctx_ctrl(ctx, (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \
|
H A D | evp.h | 1260 # define EVP_PKEY_OP_SIGN (1<<3) macro 1270 (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY | EVP_PKEY_OP_VERIFYRECOVER \
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_pmeth.c | 439 (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY))) in pkey_rsa_ctrl()
|
/third_party/openssl/crypto/rsa/ |
H A D | rsa_pmeth.c | 439 (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY))) in pkey_rsa_ctrl()
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | evp.h | 723 ((ctx)->operation == EVP_PKEY_OP_SIGN \
|
/third_party/openssl/include/crypto/ |
H A D | evp.h | 723 ((ctx)->operation == EVP_PKEY_OP_SIGN \
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | evp.h | 1688 # define EVP_PKEY_OP_SIGN (1<<4) macro 1700 (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY | EVP_PKEY_OP_VERIFYRECOVER \
|
/third_party/openssl/include/openssl/ |
H A D | evp.h | 1686 # define EVP_PKEY_OP_SIGN (1<<4) macro 1698 (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY | EVP_PKEY_OP_VERIFYRECOVER \
|