summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ecdsa/ecs_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ecdsa/ecs_local.h')
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_local.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecs_local.h b/src/lib/libcrypto/ecdsa/ecs_local.h
index 20ad0c246e..4f1140483f 100644
--- a/src/lib/libcrypto/ecdsa/ecs_local.h
+++ b/src/lib/libcrypto/ecdsa/ecs_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_local.h,v 1.3 2023/06/25 18:45:56 tb Exp $ */ 1/* $OpenBSD: ecs_local.h,v 1.4 2023/07/05 08:39:40 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project 3 * Written by Nils Larsch for the OpenSSL project
4 */ 4 */
@@ -68,12 +68,12 @@ struct ECDSA_SIG_st {
68 BIGNUM *s; 68 BIGNUM *s;
69}; 69};
70 70
71int ossl_ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 71int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
72 BIGNUM **rp); 72 BIGNUM **rp);
73int ossl_ecdsa_sign(int type, const unsigned char *dgst, int dlen, 73int ecdsa_sign(int type, const unsigned char *dgst, int dlen,
74 unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv, 74 unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv,
75 const BIGNUM *r, EC_KEY *eckey); 75 const BIGNUM *r, EC_KEY *eckey);
76ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, 76ECDSA_SIG *ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
77 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey); 77 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey);
78 78
79__END_HIDDEN_DECLS 79__END_HIDDEN_DECLS