Author: toad
Date: 2007-05-22 17:55:14 +0000 (Tue, 22 May 2007)
New Revision: 13304
Modified:
trunk/freenet/src/freenet/node/NodeClientCore.java
Log:
Default allowInsecureSSKs=false.
This means you can no longer access pre-1010 sites with their severely broken
encryption.
Set it to true if you need to e.g. update your old freesite with a redirect to
a new site (you really should have done this already!).
Modified: trunk/freenet/src/freenet/node/NodeClientCore.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeClientCore.java 2007-05-22 15:48:30 UTC
(rev 13303)
+++ trunk/freenet/src/freenet/node/NodeClientCore.java 2007-05-22 17:55:14 UTC
(rev 13304)
@@ -345,7 +345,7 @@
Key.ALLOW_INSECURE_CLIENT_CHKS =
nodeConfig.getBoolean("allowInsecureCHKs");
- nodeConfig.register("allowInsecureSSKs", true, sortOrder++,
true, false, "NodeClientCore.allowInsecureSSK",
"NodeClientCore.allowInsecureSSKLong",
+ nodeConfig.register("allowInsecureSSKs", false, sortOrder++,
true, false, "NodeClientCore.allowInsecureSSK",
"NodeClientCore.allowInsecureSSKLong",
new BooleanCallback() {
public boolean get() {