- (djm) ssh-keygen -i needs seeded RNG; report from markus@
This commit is contained in:
parent
581930735a
commit
4a10d2e90b
|
@ -4,6 +4,7 @@
|
||||||
- (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
|
- (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
|
||||||
Known issue: Blowfish for SSH1 does not work
|
Known issue: Blowfish for SSH1 does not work
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
20020307
|
20020307
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -7827,4 +7828,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1919 2002/03/11 00:16:34 stevesk Exp $
|
$Id: ChangeLog,v 1.1920 2002/03/11 11:53:29 djm Exp $
|
||||||
|
|
|
@ -947,12 +947,10 @@ main(int ac, char **av)
|
||||||
do_fingerprint(pw);
|
do_fingerprint(pw);
|
||||||
if (change_passphrase)
|
if (change_passphrase)
|
||||||
do_change_passphrase(pw);
|
do_change_passphrase(pw);
|
||||||
if (change_comment)
|
|
||||||
do_change_comment(pw);
|
|
||||||
if (convert_to_ssh2)
|
if (convert_to_ssh2)
|
||||||
do_convert_to_ssh2(pw);
|
do_convert_to_ssh2(pw);
|
||||||
if (convert_from_ssh2)
|
if (change_comment)
|
||||||
do_convert_from_ssh2(pw);
|
do_change_comment(pw);
|
||||||
if (print_public)
|
if (print_public)
|
||||||
do_print_public(pw);
|
do_print_public(pw);
|
||||||
if (reader_id != NULL) {
|
if (reader_id != NULL) {
|
||||||
|
@ -970,6 +968,9 @@ main(int ac, char **av)
|
||||||
seed_rng();
|
seed_rng();
|
||||||
arc4random_stir();
|
arc4random_stir();
|
||||||
|
|
||||||
|
if (convert_from_ssh2)
|
||||||
|
do_convert_from_ssh2(pw);
|
||||||
|
|
||||||
if (key_type_name == NULL) {
|
if (key_type_name == NULL) {
|
||||||
printf("You must specify a key type (-t).\n");
|
printf("You must specify a key type (-t).\n");
|
||||||
usage();
|
usage();
|
||||||
|
|
Loading…
Reference in New Issue