/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | ecdsa.rs | 46 #[corresponds(ECDSA_SIG_set0)] 50 ECDSA_SIG_set0(sig, r.as_ptr(), s.as_ptr()); in from_private_components() 114 use ffi::{ECDSA_SIG_set0, ECDSA_SIG_get0}; 117 unsafe fn ECDSA_SIG_set0( in ECDSA_SIG_set0() functions
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genec.c | 64 ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() function 650 if (ECDSA_SIG_set0(ecsig, r, s) != 1) { 651 lwsl_err("%s: ECDSA_SIG_set0 fail\n", __func__);
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | ec.rs | 249 pub fn ECDSA_SIG_set0(sig: *mut ECDSA_SIG, pr: *mut BIGNUM, ps: *mut BIGNUM) -> c_int; in ECDSA_SIG_set0() functions
|
/third_party/node/deps/openssl/openssl/crypto/sm2/ |
H A D | sm2_sign.c | 297 ECDSA_SIG_set0(sig, r, s); in sm2_sig_gen()
|
/third_party/openssl/crypto/sm2/ |
H A D | sm2_sign.c | 297 ECDSA_SIG_set0(sig, r, s); in sm2_sig_gen()
|
/third_party/node/src/crypto/ |
H A D | crypto_sig.cc | 210 CHECK_EQ(1, ECDSA_SIG_set0(asn1_sig.get(), r, s)); in ValidateDSAParameters()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | ec.h | 1355 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
|
/third_party/openssl/include/openssl/ |
H A D | ec.h | 1355 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ec.h | 1182 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_asn1.c | 1306 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() function
|
/third_party/openssl/crypto/ec/ |
H A D | ec_asn1.c | 1306 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() function
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_openssl.c | 98 static int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() function 2892 if (!r_bn || !s_bn || !sig || ECDSA_SIG_set0(sig, r_bn, s_bn) != 1) in crypto_ec_key_verify_signature_r_s()
|
/third_party/openssl/test/ |
H A D | acvp_test.c | 292 || !TEST_true(ECDSA_SIG_set0(sign, rbn, sbn))) in ecdsa_sigver_test()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 56 static int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() function 5669 if (!r || !s || !sig || ECDSA_SIG_set0(sig, r, s) != 1) in dpp_process_signed_connector()
|