summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dsa/dsa.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/dsa/dsa.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dsa/dsa.h b/src/lib/libcrypto/dsa/dsa.h
index 6d618113fd..7e73b205b0 100644
--- a/src/lib/libcrypto/dsa/dsa.h
+++ b/src/lib/libcrypto/dsa/dsa.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: dsa.h,v 1.27 2018/02/20 17:45:44 tb Exp $ */ 1/* $OpenBSD: dsa.h,v 1.28 2018/02/20 17:48:35 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -183,6 +183,8 @@ DSA_SIG * DSA_SIG_new(void);
183void DSA_SIG_free(DSA_SIG *a); 183void DSA_SIG_free(DSA_SIG *a);
184int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp); 184int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
185DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length); 185DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
186void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
187int DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s);
186 188
187DSA_SIG * DSA_do_sign(const unsigned char *dgst,int dlen,DSA *dsa); 189DSA_SIG * DSA_do_sign(const unsigned char *dgst,int dlen,DSA *dsa);
188int DSA_do_verify(const unsigned char *dgst,int dgst_len, 190int DSA_do_verify(const unsigned char *dgst,int dgst_len,