diff options
| author | default <nobody@localhost> | 2025-01-15 06:45:39 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-15 06:45:39 +0100 |
| commit | f4a2add31008a5d3a42fe8b7780f3ee6716d7940 (patch) | |
| tree | f97b519467a4ceb023b0b30c2b1f2fdb18050257 | |
| parent | a016045a8fb80e4accad618c60b987bad708f45e (diff) | |
Reduced RSA key size to 2048.
| -rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |