diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-03-31 16:51:07 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-03-31 16:51:07 +0000 |
commit | de0bf64a427fab4953a631c474cd43f2523615ba (patch) | |
tree | f40311ad66db664c80ed0ebf4870cc483a6528cc /lib | |
parent | 568955631345402783b8fbb7a6a0fd0115daf8b0 (diff) |
Provide missing prototype for d2i_DSAPrivateKey_fp(3)
ok bcook inoguchi jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/x509/x509.h | 3 |
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 |