summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-01-14 09:23:42 +0000
committertb <>2022-01-14 09:23:42 +0000
commit5f55a5a94d9b6b8a4e230bc45980216aab9139f8 (patch)
tree51bf3d6d0c0ac4910607106d917b1e01b878e1a5 /src
parentfbdb94d83accecb345785ef71d006a0da53102bc (diff)
downloadopenbsd-5f55a5a94d9b6b8a4e230bc45980216aab9139f8.tar.gz
openbsd-5f55a5a94d9b6b8a4e230bc45980216aab9139f8.tar.bz2
openbsd-5f55a5a94d9b6b8a4e230bc45980216aab9139f8.zip
Convert openssl(1) dsa.c to opaque DSA
ok inoguchi jsing
Diffstat (limited to 'src')
-rw-r--r--src/usr.bin/openssl/dsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/dsa.c b/src/usr.bin/openssl/dsa.c
index 1b5e302bd5..df45cd6ebe 100644
--- a/src/usr.bin/openssl/dsa.c
+++ b/src/usr.bin/openssl/dsa.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dsa.c,v 1.15 2019/07/14 03:30:45 guenther Exp $ */ 1/* $OpenBSD: dsa.c,v 1.16 2022/01/14 09:23:42 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 *
@@ -315,7 +315,7 @@ dsa_main(int argc, char **argv)
315 } 315 }
316 if (dsa_config.modulus) { 316 if (dsa_config.modulus) {
317 fprintf(stdout, "Public Key="); 317 fprintf(stdout, "Public Key=");
318 BN_print(out, dsa->pub_key); 318 BN_print(out, DSA_get0_pub_key(dsa));
319 fprintf(stdout, "\n"); 319 fprintf(stdout, "\n");
320 } 320 }
321 if (dsa_config.noout) 321 if (dsa_config.noout)