Przeglądaj źródła

Reduced RSA key size to 2048.

default 1 rok temu
rodzic
commit
f4a2add310
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      utils.c

+ 1 - 1
utils.c

@@ -330,7 +330,7 @@ int adduser(const char *uid)
     }
 
     printf("\nCreating RSA key...\n");
-    key = xs_evp_genkey(4096);
+    key = xs_evp_genkey(2048);
     printf("Done.\n");
 
     xs *kfn = xs_fmt("%s/key.json", basedir);