diff options
Diffstat (limited to 'src/lib/libcrypto/ecdsa')
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecdsa.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecdsa.h b/src/lib/libcrypto/ecdsa/ecdsa.h index 71b8825436..c4e107eee5 100644 --- a/src/lib/libcrypto/ecdsa/ecdsa.h +++ b/src/lib/libcrypto/ecdsa/ecdsa.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecdsa.h,v 1.7 2019/01/19 01:12:48 tb Exp $ */ | 1 | /* $OpenBSD: ecdsa.h,v 1.8 2019/01/19 01:17:41 tb Exp $ */ |
2 | /** | 2 | /** |
3 | * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions | 3 | * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions |
4 | * \author Written by Nils Larsch for the OpenSSL project | 4 | * \author Written by Nils Larsch for the OpenSSL project |
@@ -284,7 +284,7 @@ void EC_KEY_METHOD_set_verify(EC_KEY_METHOD *meth, | |||
284 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey), | 284 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey), |
285 | int (*verify_sig)(const unsigned char *dgst, int dgst_len, | 285 | int (*verify_sig)(const unsigned char *dgst, int dgst_len, |
286 | const ECDSA_SIG *sig, EC_KEY *eckey)); | 286 | const ECDSA_SIG *sig, EC_KEY *eckey)); |
287 | void EC_KEY_METHOD_get_sign(EC_KEY_METHOD *meth, | 287 | void EC_KEY_METHOD_get_sign(const EC_KEY_METHOD *meth, |
288 | int (**psign)(int type, const unsigned char *dgst, | 288 | int (**psign)(int type, const unsigned char *dgst, |
289 | int dlen, unsigned char *sig, unsigned int *siglen, | 289 | int dlen, unsigned char *sig, unsigned int *siglen, |
290 | const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey), | 290 | const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey), |
@@ -293,7 +293,7 @@ void EC_KEY_METHOD_get_sign(EC_KEY_METHOD *meth, | |||
293 | ECDSA_SIG *(**psign_sig)(const unsigned char *dgst, | 293 | ECDSA_SIG *(**psign_sig)(const unsigned char *dgst, |
294 | int dgst_len, const BIGNUM *in_kinv, const BIGNUM *in_r, | 294 | int dgst_len, const BIGNUM *in_kinv, const BIGNUM *in_r, |
295 | EC_KEY *eckey)); | 295 | EC_KEY *eckey)); |
296 | void EC_KEY_METHOD_get_verify(EC_KEY_METHOD *meth, | 296 | void EC_KEY_METHOD_get_verify(const EC_KEY_METHOD *meth, |
297 | int (**pverify)(int type, const unsigned char *dgst, int dgst_len, | 297 | int (**pverify)(int type, const unsigned char *dgst, int dgst_len, |
298 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey), | 298 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey), |
299 | int (**pverify_sig)(const unsigned char *dgst, int dgst_len, | 299 | int (**pverify_sig)(const unsigned char *dgst, int dgst_len, |