summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2021-03-31 16:51:06 +0000
committertb <tb@openbsd.org>2021-03-31 16:51:06 +0000
commitc3ab052b76109c12233f48762776fa02fc490035 (patch)
tree6ea27a16e9a16a5a18b50e19ccb77f3a871c981d /lib
parentDocument EVP_PKEY_new_CMAC_key(3) (diff)
downloadwireguard-openbsd-c3ab052b76109c12233f48762776fa02fc490035.tar.xz
wireguard-openbsd-c3ab052b76109c12233f48762776fa02fc490035.zip
Provide missing prototype for d2i_DSAPrivateKey_fp(3)
ok bcook inoguchi jsing
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/x509/x509.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/x509/x509.h b/lib/libcrypto/x509/x509.h
index c66dfa6a48f..f135ee9a86e 100644
--- a/lib/libcrypto/x509/x509.h
+++ b/lib/libcrypto/x509/x509.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509.h,v 1.74 2018/08/24 20:26:03 tb Exp $ */
+/* $OpenBSD: x509.h,v 1.75 2021/03/31 16:51:06 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -679,6 +679,7 @@ int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa);
#ifndef OPENSSL_NO_DSA
DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa);
+DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa);
int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
#endif
#ifndef OPENSSL_NO_EC