summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE_NOTES.md2
-rw-r--r--utils.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 28bcf56..2e20bc7 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -12,6 +12,8 @@ Fixed broken NetBSD build (missing dependency in Makefile.NetBSD).
12 12
13The user profile can now include longitude and latitude data for your current location. 13The user profile can now include longitude and latitude data for your current location.
14 14
15Reduced RSA key size for new users from 4096 to 2048. This will be friendlier to smaller machines, and everybody else out there is using 2048.
16
15## 2.68 17## 2.68
16 18
17Fixed regression in link verification code (contributed by nowster). 19Fixed regression in link verification code (contributed by nowster).
diff --git a/utils.c b/utils.c
index 336ae2d..8422a9a 100644
--- a/utils.c
+++ b/utils.c
@@ -330,7 +330,7 @@ int adduser(const char *uid)
330 } 330 }
331 331
332 printf("\nCreating RSA key...\n"); 332 printf("\nCreating RSA key...\n");
333 key = xs_evp_genkey(4096); 333 key = xs_evp_genkey(2048);
334 printf("Done.\n"); 334 printf("Done.\n");
335 335
336 xs *kfn = xs_fmt("%s/key.json", basedir); 336 xs *kfn = xs_fmt("%s/key.json", basedir);