Generate keys with 0x10001 as public exponent, which has less prime factors
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 25 Sep 2003 10:34:16 +0000 (10:34 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 25 Sep 2003 10:34:16 +0000 (10:34 +0000)
than 0xFFFF.

src/tincd.c

index 299e516..ebee1b3 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     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.87 2003/09/08 21:52:47 guus Exp $
+    $Id: tincd.c,v 1.10.4.88 2003/09/25 10:34:16 guus Exp $
 */
 
 #include "system.h"
 */
 
 #include "system.h"
@@ -291,7 +291,7 @@ static bool keygen(int bits)
        char *filename;
 
        fprintf(stderr, _("Generating %d bits keys:\n"), bits);
        char *filename;
 
        fprintf(stderr, _("Generating %d bits keys:\n"), bits);
-       rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL);
+       rsa_key = RSA_generate_key(bits, 0x10001, indicator, NULL);
 
        if(!rsa_key) {
                fprintf(stderr, _("Error during key generation!\n"));
 
        if(!rsa_key) {
                fprintf(stderr, _("Error during key generation!\n"));