summaryrefslogtreecommitdiffstats
path: root/apps/dsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dsa.c')
-rw-r--r--apps/dsa.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/dsa.c b/apps/dsa.c
index 9038e3bfb7..1c841a3a80 100644
--- a/apps/dsa.c
+++ b/apps/dsa.c
@@ -243,8 +243,10 @@ int dsa_main(int argc, char **argv)
}
if (modulus) {
+ BIGNUM *pub_key = NULL;
+ DSA_get0_key(dsa, &pub_key, NULL);
BIO_printf(out, "Public Key=");
- BN_print(out, DSA_get0_pub_key(dsa));
+ BN_print(out, pub_key);
BIO_printf(out, "\n");
}