commit f4a2add31008a5d3a42fe8b7780f3ee6716d7940 parent a016045a8fb80e4accad618c60b987bad708f45e Author: default <nobody@localhost> Date: Wed, 15 Jan 2025 06:45:39 +0100 Reduced RSA key size to 2048. Diffstat:
M | utils.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils.c b/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);