summaryrefslogtreecommitdiffstats
path: root/rsa.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-04 14:57:08 +1000
committerDamien Miller <djm@mindrot.org>2000-04-04 14:57:08 +1000
commit9f98f06c89afad9c8f32d496c07f3bf44e7dc906 (patch)
treee1b3a6eba9dd11ca637d08ee3518849b83dca5a1 /rsa.c
parent2acd082bc97f0f6d0a8ca510d3945b4262922ed3 (diff)
Removed excess seed_rng calls
Diffstat (limited to 'rsa.c')
-rw-r--r--rsa.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/rsa.c b/rsa.c
index 19160902..0385a102 100644
--- a/rsa.c
+++ b/rsa.c
@@ -35,7 +35,7 @@
*/
#include "includes.h"
-RCSID("$Id: rsa.c,v 1.12 2000/04/03 04:50:46 damien Exp $");
+RCSID("$Id: rsa.c,v 1.13 2000/04/04 04:57:08 damien Exp $");
#include "rsa.h"
#include "ssh.h"
@@ -96,8 +96,6 @@ rsa_generate_key(RSA *prv, RSA *pub, unsigned int bits)
if (key == NULL)
fatal("rsa_generate_key: key generation failed.");
- seed_rng();
-
/* Copy public key parameters */
pub->n = BN_new();
BN_copy(pub->n, key->n);