summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/dsa/dsa_gen.c
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2015-02-15 08:48:24 +0000
committermiod <miod@openbsd.org>2015-02-15 08:48:24 +0000
commit58f99da77daa89849095ef2f8ac31ae04ea89b39 (patch)
tree8a1ebd65ad2a109d0ce2238c170de4cd6ada0770 /lib/libcrypto/dsa/dsa_gen.c
parentCheck ASN1_OCTET_STRING_new() for failure. Coverity CID 78904 (diff)
downloadwireguard-openbsd-58f99da77daa89849095ef2f8ac31ae04ea89b39.tar.xz
wireguard-openbsd-58f99da77daa89849095ef2f8ac31ae04ea89b39.zip
If we decide to discard the provided seed buffer because its size is not
large enough, do it correctly so that the local seed buffer on the stack gets properly initialized in the first iteration of the loop. While there, remove an outdated and bogus comment. Coverity CID 21785 ok doug@ jsing@
Diffstat (limited to 'lib/libcrypto/dsa/dsa_gen.c')
-rw-r--r--lib/libcrypto/dsa/dsa_gen.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/libcrypto/dsa/dsa_gen.c b/lib/libcrypto/dsa/dsa_gen.c
index dcfa9578841..c1664d5f8aa 100644
--- a/lib/libcrypto/dsa/dsa_gen.c
+++ b/lib/libcrypto/dsa/dsa_gen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsa_gen.c,v 1.18 2015/02/09 15:49:22 jsing Exp $ */
+/* $OpenBSD: dsa_gen.c,v 1.19 2015/02/15 08:48:24 miod Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -126,12 +126,10 @@ dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits, const EVP_MD *evpmd,
bits = (bits + 63) / 64 * 64;
- /*
- * NB: seed_len == 0 is special case: copy generated seed to
- * seed_in if it is not NULL.
- */
- if (seed_len && seed_len < (size_t)qsize)
+ if (seed_len < (size_t)qsize) {
seed_in = NULL; /* seed buffer too small -- ignore */
+ seed_len = 0;
+ }
/*
* App. 2.2 of FIPS PUB 186 allows larger SEED,
* but our internal buffers are restricted to 160 bits
@@ -176,7 +174,7 @@ dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits, const EVP_MD *evpmd,
if (!BN_GENCB_call(cb, 0, m++))
goto err;
- if (!seed_len) {
+ if (seed_len == 0) {
arc4random_buf(seed, qsize);
seed_is_random = 1;
} else {
@@ -344,7 +342,7 @@ err:
*counter_ret = counter;
if (h_ret != NULL)
*h_ret = h;
- if (seed_out)
+ if (seed_out != NULL)
memcpy(seed_out, seed, qsize);
}
if (ctx) {