I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 9f64cc7c authored by zzz's avatar zzz
Browse files

TLSv1.3 notes

parent 03651292
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,12 @@ public class I2PSSLSocketFactory { ...@@ -132,7 +132,12 @@ public class I2PSSLSocketFactory {
/** /**
* Java 7 does not enable 1.1 or 1.2 by default on the client side. * Java 7 does not enable 1.1 or 1.2 by default on the client side.
* Java 8 does enable 1.1 and 1.2 by default on the client side. * Java 8 does enable 1.1 and 1.2 by default on the client side.
* 1.3 in Java 11. * 1.3 in Java 11, but it requires:
* ChaCha20/Poly1305 in Java 12 (we could add a provider)
* X25519 in Java 13 but may be pulled in to 12 (can't use our unsigned provider)
* Ed25519 in Java 13 (but we can use our provider)
* ref: https://openjdk.java.net/jeps/332
*
* ref: http://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html * ref: http://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html
* Unmodifiable. * Unmodifiable.
* Public for RouterConsoleRunner. * Public for RouterConsoleRunner.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment