/openssl/doc/man3/ |
H A D | ECDSA_SIG_new.pod | 7 - Functions for creating, destroying and manipulating ECDSA_SIG objects 13 ECDSA_SIG *ECDSA_SIG_new(void); 14 void ECDSA_SIG_free(ECDSA_SIG *sig); 16 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig); 17 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig); 18 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s); 30 ECDSA_SIG_new() allocates an empty B<ECDSA_SIG> structure. 33 ECDSA_SIG_free() frees the B<ECDSA_SIG> structure I<sig>. 66 ECDSA_SIG *obj; 69 /* Load a signature into the ECDSA_SIG object */ [all …]
|
H A D | ECDSA_sign.pod | 22 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len, 28 const ECDSA_SIG *sig, EC_KEY* eckey); 30 ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen, 40 See L<ECDSA_SIG_new(3)> for a description of the B<ECDSA_SIG> object. 61 as a newly allocated B<ECDSA_SIG> structure (or NULL on error). ECDSA_do_sign() 70 presented in the form of a pointer to an B<ECDSA_SIG> structure. 89 returned as a newly allocated B<ECDSA_SIG> structure (or NULL on error). 99 B<ECDSA_SIG> structure or NULL on error. 115 ECDSA_SIG *sig;
|
H A D | d2i_X509.pod | 505 =item B<ECDSA_SIG>
|
/openssl/include/openssl/ |
H A D | ec.h | 1323 typedef struct ECDSA_SIG_st ECDSA_SIG; typedef 1328 ECDSA_SIG *ECDSA_SIG_new(void); 1333 void ECDSA_SIG_free(ECDSA_SIG *sig); 1342 DECLARE_ASN1_ENCODE_FUNCTIONS_only(ECDSA_SIG, ECDSA_SIG) 1362 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig); 1367 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig); 1374 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s); 1384 OSSL_DEPRECATEDIN_3_0 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, 1508 ECDSA_SIG *(*sign_sig)(const unsigned char *dgst, 1552 ECDSA_SIG *(**psign_sig)(const unsigned char *dgst, [all …]
|
/openssl/crypto/sm2/ |
H A D | sm2_sign.c | 207 static ECDSA_SIG *sm2_sig_gen(const EC_KEY *key, const BIGNUM *e) in sm2_sig_gen() 212 ECDSA_SIG *sig = NULL; in sm2_sig_gen() 326 static int sm2_sig_verify(const EC_KEY *key, const ECDSA_SIG *sig, in sm2_sig_verify() 406 ECDSA_SIG *ossl_sm2_do_sign(const EC_KEY *key, in ossl_sm2_do_sign() 413 ECDSA_SIG *sig = NULL; in ossl_sm2_do_sign() 430 const ECDSA_SIG *sig, in ossl_sm2_do_verify() 456 ECDSA_SIG *s = NULL; in ossl_sm2_internal_sign() 496 ECDSA_SIG *s = NULL; in ossl_sm2_internal_verify()
|
/openssl/crypto/ec/ |
H A D | ecdsa_ossl.c | 50 ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, in ossl_ecdsa_sign_sig() 64 const ECDSA_SIG *sig, EC_KEY *eckey) in ossl_ecdsa_verify_sig() 78 ECDSA_SIG *s; in ossl_ecdsa_sign() 101 ECDSA_SIG *s; in ossl_ecdsa_deterministic_sign() 270 ECDSA_SIG *ossl_ecdsa_simple_sign_sig(const unsigned char *dgst, int dgst_len, in ossl_ecdsa_simple_sign_sig() 280 ECDSA_SIG *ret; in ossl_ecdsa_simple_sign_sig() 422 ECDSA_SIG *s; in ossl_ecdsa_verify() 445 const ECDSA_SIG *sig, EC_KEY *eckey) in ossl_ecdsa_simple_verify_sig()
|
H A D | ec_asn1.c | 1190 DECLARE_ASN1_FUNCTIONS(ECDSA_SIG) 1191 DECLARE_ASN1_ENCODE_FUNCTIONS_name(ECDSA_SIG, ECDSA_SIG) in DECLARE_ASN1_ENCODE_FUNCTIONS_name() argument 1195 ECDSA_SIG *ECDSA_SIG_new(void) in DECLARE_ASN1_ENCODE_FUNCTIONS_name() 1197 ECDSA_SIG *sig = OPENSSL_zalloc(sizeof(*sig)); in DECLARE_ASN1_ENCODE_FUNCTIONS_name() 1202 void ECDSA_SIG_free(ECDSA_SIG *sig) in ECDSA_SIG_free() 1211 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **psig, const unsigned char **ppin, long len) in d2i_ECDSA_SIG() 1213 ECDSA_SIG *sig; in d2i_ECDSA_SIG() 1288 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig) in ECDSA_SIG_get0_r() 1293 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig) in ECDSA_SIG_get0_s() 1298 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) in ECDSA_SIG_set0() [all …]
|
H A D | ecdsa_sign.c | 20 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey) in ECDSA_do_sign() 25 ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dlen, in ECDSA_do_sign_ex()
|
H A D | ecp_s390x_nistp.c | 125 static ECDSA_SIG *ecdsa_s390x_nistp_sign_sig(const unsigned char *dgst, in ecdsa_s390x_nistp_sign_sig() 135 ECDSA_SIG *sig; in ecdsa_s390x_nistp_sign_sig() 225 const ECDSA_SIG *sig, EC_KEY *eckey, in ecdsa_s390x_nistp_verify_sig() 300 static ECDSA_SIG *ecdsa_s390x_nistp##bits##_sign_sig(const unsigned \ 315 const ECDSA_SIG *sig, \
|
H A D | ec_kmeth.c | 236 ECDSA_SIG *(*sign_sig)(const unsigned char *dgst, in EC_KEY_METHOD_set_sign() 254 const ECDSA_SIG *sig, in EC_KEY_METHOD_set_verify() 311 ECDSA_SIG *(**psign_sig)(const unsigned char *dgst, in EC_KEY_METHOD_get_sign() 332 const ECDSA_SIG *sig, in EC_KEY_METHOD_get_verify()
|
H A D | ec_local.h | 181 ECDSA_SIG *(*ecdsa_sign_sig)(const unsigned char *dgst, int dgstlen, 185 const ECDSA_SIG *sig, EC_KEY *eckey); 683 ECDSA_SIG *(*sign_sig)(const unsigned char *dgst, int dgst_len, 690 const ECDSA_SIG *sig, EC_KEY *eckey); 714 ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, 720 const ECDSA_SIG *sig, EC_KEY *eckey); 723 ECDSA_SIG *ossl_ecdsa_simple_sign_sig(const unsigned char *dgst, int dgst_len, 727 const ECDSA_SIG *sig, EC_KEY *eckey);
|
H A D | ecdsa_vrf.c | 27 const ECDSA_SIG *sig, EC_KEY *eckey) in ECDSA_do_verify()
|
H A D | ec_key.c | 1105 ECDSA_SIG *sig = NULL; in ecdsa_keygen_pairwise_test()
|
/openssl/include/crypto/ |
H A D | sm2.h | 37 ECDSA_SIG *ossl_sm2_do_sign(const EC_KEY *key, 45 const ECDSA_SIG *signature,
|
/openssl/test/ |
H A D | sm2_internal_test.c | 316 ECDSA_SIG *sig = NULL; in test_sm2_sign()
|
H A D | ecdsatest.c | 84 ECDSA_SIG *signature = NULL; in x9_62_tests()
|
H A D | acvp_test.c | 242 ECDSA_SIG *sign = d2i_ECDSA_SIG(NULL, &sig, sig_len); in get_ecdsa_sig_rs_bytes() 308 ECDSA_SIG *sign = NULL; in ecdsa_sigver_test()
|
/openssl/fuzz/ |
H A D | asn1.c | 368 DO_TEST_NO_PRINT(ECDSA_SIG, d2i_ECDSA_SIG, i2d_ECDSA_SIG); in FuzzerTestOneInput()
|
/openssl/util/ |
H A D | indent.pro | 197 -T ECDSA_SIG
|
/openssl/ |
H A D | CHANGES.md | 5624 ECDSA_SIG format.
|