X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Ftincd.c;h=ba17b30f59970cf32ada818205861cb23a1b2919;hp=2e607b67c7195013b87b9c8b7035524f929239ab;hb=b7d4d4c17712e0bb9ee8bd497a2f525b79d5f40d;hpb=ec12269355f7979fdc0783dc15d109832f1e83cd diff --git a/src/tincd.c b/src/tincd.c index 2e607b67..ba17b30f 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: tincd.c,v 1.10.4.20 2000/10/29 22:10:44 guus Exp $ + $Id: tincd.c,v 1.10.4.21 2000/10/29 22:55:15 guus Exp $ */ #include "config.h" @@ -205,9 +205,6 @@ int keygen(int bits) { RSA *rsa_key; - fprintf(stderr, _("Seeding the PRNG: please press some keys or move\nthe mouse if this program seems to have halted...\n")); - RAND_load_file("/dev/random", 1024); /* OpenSSL PRNG state apparently uses 1024 bytes, but it seems pretty sufficient anyway :) */ - fprintf(stderr, _("Generating %d bits keys:\n"), bits); rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL); if(!rsa_key) @@ -423,6 +420,10 @@ main(int argc, char **argv, char **envp) make_names(); + /* Slllluuuuuuurrrrp! */ + + RAND_load_file("/dev/urandom", 1024); + if(generate_keys) exit(keygen(generate_keys));