- (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@

This commit is contained in:
Damien Miller 2002-01-30 09:37:06 +11:00
parent f1cec392ed
commit 8eb7141758
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
20020130
- (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@
20020125
- (djm) Don't grab Xserver or pointer by default. x11-ssh-askpass doesn't
and grabbing can cause deadlocks with kinput2.
@ -7394,4 +7397,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1796 2002/01/24 13:59:25 djm Exp $
$Id: ChangeLog,v 1.1797 2002/01/29 22:37:06 djm Exp $

View File

@ -847,8 +847,6 @@ main(int ac, char **av)
extern char *optarg;
__progname = get_progname(av[0]);
init_rng();
seed_rng();
SSLeay_add_all_algorithms();
@ -964,6 +962,8 @@ main(int ac, char **av)
#endif /* SMARTCARD */
}
init_rng();
seed_rng();
arc4random_stir();
if (key_type_name == NULL) {