summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2014-10-15 14:52:00 +0200
committerYorhel <git@yorhel.nl>2014-10-15 14:52:00 +0200
commit751894339d27882b3c647661d0ee912aa802065b (patch)
tree0924d4d20d61566e8ce248cd4d60fe64c0b6b518
parentd41c36d583bbd716038bf307d57d9c0492bac939 (diff)
scrypt: Lower default N to 65536
Completely disregard my comments regarding DoS in commit 6e0a0e1d00e11da9b4eab2163e19314f752b05b5 - successful logins aren't throttled at all. The other reason for lowering this value is because the API requires a login for each new TCP session, and it doesn't seem like many (any?) applications keep the TCP session alive for very long. Still, 65536 is more secure than the default of 16384.
-rw-r--r--data/global.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/global.pl b/data/global.pl
index 477574c8..0e3dad3f 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -25,7 +25,7 @@ our %S = (%S,
skin_default => 'angel',
global_salt => 'any-private-string-here',
form_salt => 'a-different-private-string-here',
- scrypt_args => [ 131072, 8, 1 ], # N, r, p
+ scrypt_args => [ 65536, 8, 1 ], # N, r, p
scrypt_salt => 'another-random-string',
regen_static => 0,
source_url => 'http://git.blicky.net/vndb.git/?h=master',