summaryrefslogtreecommitdiff
path: root/schnorr.h
diff options
context:
space:
mode:
Diffstat (limited to 'schnorr.h')
-rw-r--r--schnorr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/schnorr.h b/schnorr.h
index 9730b47ce..e2405c102 100644
--- a/schnorr.h
+++ b/schnorr.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: schnorr.h,v 1.1 2009/03/05 07:18:19 djm Exp $ */ 1/* $OpenBSD: schnorr.h,v 1.2 2014/01/09 23:20:00 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2009 Damien Miller. All rights reserved. 3 * Copyright (c) 2009 Damien Miller. All rights reserved.
4 * 4 *
@@ -27,7 +27,7 @@ struct modp_group {
27}; 27};
28 28
29BIGNUM *bn_rand_range_gt_one(const BIGNUM *high); 29BIGNUM *bn_rand_range_gt_one(const BIGNUM *high);
30int hash_buffer(const u_char *, u_int, const EVP_MD *, u_char **, u_int *); 30int hash_buffer(const u_char *, u_int, int, u_char **, u_int *);
31void debug3_bn(const BIGNUM *, const char *, ...) 31void debug3_bn(const BIGNUM *, const char *, ...)
32 __attribute__((__nonnull__ (2))) 32 __attribute__((__nonnull__ (2)))
33 __attribute__((format(printf, 2, 3))); 33 __attribute__((format(printf, 2, 3)));
@@ -40,7 +40,7 @@ void modp_group_free(struct modp_group *);
40/* Signature and verification functions */ 40/* Signature and verification functions */
41int 41int
42schnorr_sign(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, 42schnorr_sign(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g,
43 const EVP_MD *evp_md, const BIGNUM *x, const BIGNUM *g_x, 43 int hash_alg, const BIGNUM *x, const BIGNUM *g_x,
44 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p); 44 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p);
45int 45int
46schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, 46schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g,
@@ -48,7 +48,7 @@ schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g,
48 u_char **sig, u_int *siglen); 48 u_char **sig, u_int *siglen);
49int 49int
50schnorr_verify(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, 50schnorr_verify(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g,
51 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen, 51 int hash_alg, const BIGNUM *g_x, const u_char *id, u_int idlen,
52 const BIGNUM *r, const BIGNUM *e); 52 const BIGNUM *r, const BIGNUM *e);
53int 53int
54schnorr_verify_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, 54schnorr_verify_buf(const BIGNUM *grp_p, const BIGNUM *grp_q,