Symbol: ECDSA_SIG
lib/libcrypto/ec/ec.h
295
ECDSA_SIG *ECDSA_SIG_new(void);
lib/libcrypto/ec/ec.h
296
void ECDSA_SIG_free(ECDSA_SIG *sig);
lib/libcrypto/ec/ec.h
297
int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
lib/libcrypto/ec/ec.h
298
ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
lib/libcrypto/ec/ec.h
300
const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig);
lib/libcrypto/ec/ec.h
301
const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig);
lib/libcrypto/ec/ec.h
302
void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
lib/libcrypto/ec/ec.h
303
int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
lib/libcrypto/ec/ec.h
307
ECDSA_SIG *ECDSA_do_sign(const unsigned char *digest, int digest_len,
lib/libcrypto/ec/ec.h
310
const ECDSA_SIG *sig, EC_KEY *eckey);
lib/libcrypto/ec/ec.h
336
ECDSA_SIG *(*sign_sig)(const unsigned char *digest, int digest_len,
lib/libcrypto/ec/ec.h
342
const ECDSA_SIG *sig, EC_KEY *eckey));
lib/libcrypto/ec/ec.h
360
ECDSA_SIG *(**psign_sig)(const unsigned char *digest, int digest_len,
lib/libcrypto/ec/ec.h
366
const ECDSA_SIG *sig, EC_KEY *eckey));
lib/libcrypto/ec/ec_key.c
661
ECDSA_SIG *(*sign_sig)(const unsigned char *dgst,
lib/libcrypto/ec/ec_key.c
676
const ECDSA_SIG *sig, EC_KEY *eckey))
lib/libcrypto/ec/ec_key.c
734
ECDSA_SIG *(**psign_sig)(const unsigned char *dgst,
lib/libcrypto/ec/ec_key.c
752
const ECDSA_SIG *sig, EC_KEY *eckey))
lib/libcrypto/ec/ec_local.h
230
ECDSA_SIG *(*sign_sig)(const unsigned char *dgst, int dgst_len,
lib/libcrypto/ec/ec_local.h
236
const ECDSA_SIG *sig, EC_KEY *eckey);
lib/libcrypto/ec/ec_local.h
267
ECDSA_SIG *ec_key_ecdsa_sign_sig(const unsigned char *digest, int digest_len,
lib/libcrypto/ec/ec_local.h
272
const ECDSA_SIG *sig, EC_KEY *eckey);
lib/libcrypto/ecdsa/ecdsa.c
101
ECDSA_SIG *
lib/libcrypto/ecdsa/ecdsa.c
102
d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len)
lib/libcrypto/ecdsa/ecdsa.c
104
return (ECDSA_SIG *)ASN1_item_d2i((ASN1_VALUE **)a, in, len,
lib/libcrypto/ecdsa/ecdsa.c
110
i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **out)
lib/libcrypto/ecdsa/ecdsa.c
116
ECDSA_SIG *
lib/libcrypto/ecdsa/ecdsa.c
119
return (ECDSA_SIG *)ASN1_item_new(&ECDSA_SIG_it);
lib/libcrypto/ecdsa/ecdsa.c
124
ECDSA_SIG_free(ECDSA_SIG *a)
lib/libcrypto/ecdsa/ecdsa.c
131
ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps)
lib/libcrypto/ecdsa/ecdsa.c
141
ECDSA_SIG_get0_r(const ECDSA_SIG *sig)
lib/libcrypto/ecdsa/ecdsa.c
148
ECDSA_SIG_get0_s(const ECDSA_SIG *sig)
lib/libcrypto/ecdsa/ecdsa.c
155
ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s)
lib/libcrypto/ecdsa/ecdsa.c
173
ECDSA_SIG sig;
lib/libcrypto/ecdsa/ecdsa.c
228
ECDSA_SIG *sig = NULL;
lib/libcrypto/ecdsa/ecdsa.c
524
ECDSA_SIG *
lib/libcrypto/ecdsa/ecdsa.c
532
ECDSA_SIG *sig = NULL;
lib/libcrypto/ecdsa/ecdsa.c
596
ECDSA_SIG *
lib/libcrypto/ecdsa/ecdsa.c
611
ECDSA_SIG *s;
lib/libcrypto/ecdsa/ecdsa.c
658
const ECDSA_SIG *sig, EC_KEY *key)
lib/libcrypto/ecdsa/ecdsa.c
771
const ECDSA_SIG *sig, EC_KEY *key)
lib/libcrypto/ecdsa/ecdsa.c
78
.offset = offsetof(ECDSA_SIG, r),
lib/libcrypto/ecdsa/ecdsa.c
85
.offset = offsetof(ECDSA_SIG, s),
lib/libcrypto/ecdsa/ecdsa.c
97
.size = sizeof(ECDSA_SIG),
lib/libcrypto/sm2/sm2_local.h
32
ECDSA_SIG *sm2_do_sign(const EC_KEY *key, const EVP_MD *digest,
lib/libcrypto/sm2/sm2_local.h
36
const ECDSA_SIG *signature, const uint8_t *uid, size_t uid_len,
lib/libcrypto/sm2/sm2_sign.c
244
sm2_sig_verify(const EC_KEY *key, const ECDSA_SIG *sig, const BIGNUM *e)
lib/libcrypto/sm2/sm2_sign.c
351
ECDSA_SIG *
lib/libcrypto/sm2/sm2_sign.c
355
ECDSA_SIG *sig = NULL;
lib/libcrypto/sm2/sm2_sign.c
372
sm2_do_verify(const EC_KEY *key, const EVP_MD *digest, const ECDSA_SIG *sig,
lib/libcrypto/sm2/sm2_sign.c
396
ECDSA_SIG *s = NULL;
lib/libcrypto/sm2/sm2_sign.c
427
ECDSA_SIG *s;
lib/libcrypto/sm2/sm2_sign.c
88
static ECDSA_SIG *
lib/libcrypto/sm2/sm2_sign.c
91
ECDSA_SIG *sig = NULL;
lib/libtls/tls_signer.c
399
static ECDSA_SIG *
lib/libtls/tls_signer.c
404
ECDSA_SIG *ecdsa_sig = NULL;
regress/lib/libcrypto/ecdsa/ecdsatest.c
93
ECDSA_SIG *ecdsa_sig = NULL;
regress/lib/libcrypto/sm2/sm2sigtest.c
104
ECDSA_SIG *sig = NULL;
regress/usr.bin/ssh/misc/sk-dummy/sk-dummy.c
295
ECDSA_SIG *sig = NULL;
sbin/iked/crypto.c
1037
ECDSA_SIG *obj = NULL;
sbin/iked/crypto.c
1121
ECDSA_SIG *obj = NULL;
usr.bin/ssh/sk-usbhid.c
908
ECDSA_SIG *sig = NULL;
usr.bin/ssh/ssh-ecdsa-sk.c
221
ECDSA_SIG *esig = NULL;
usr.bin/ssh/ssh-ecdsa.c
314
ECDSA_SIG *esig = NULL;
usr.bin/ssh/ssh-ecdsa.c
403
ECDSA_SIG *esig = NULL;
usr.sbin/acme-client/acctproc.c
258
ECDSA_SIG *ec_sig = NULL;
usr.sbin/smtpd/ca.c
37
static ECDSA_SIG *ecdsae_do_sign(const unsigned char *, int, const BIGNUM *,
usr.sbin/smtpd/ca.c
402
static ECDSA_SIG *
usr.sbin/smtpd/ca.c
415
ECDSA_SIG *sig = NULL;
usr.sbin/smtpd/ca.c
476
static ECDSA_SIG *
usr.sbin/smtpd/ca.c
480
ECDSA_SIG *(*psign_sig)(const unsigned char *, int, const BIGNUM *,