From a8dae95e494eefa1163690458c723d498d6645ce Mon Sep 17 00:00:00 2001 From: Gideon le Grange Date: Tue, 25 Mar 2014 20:34:34 +0200 Subject: [PATCH] Update README.md Updated README.md with information about TLS issues --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d7825e5..0d0bfce 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,11 @@ To open an encrypted (TLS) connection is as simple, assuming the default API-SSL ApiConnection con = ApiConnection.connectTLS("10.0.1.1"); // connect to router using TLS ``` -Currently only anonymous TLS is supported, not certificates. +#### Notes about TLS: +* Currently only anonymous TLS is supported, not certificates. +* There is a compatibility problem between the current versions of RouterOS supporting API over TLS and the Java Cryptography Extension (JCE) in Java 7 and earlier. TLS encryption works in Java 8 and later. For more information, feel free to contact me. + + In following examples the connection, login and disconnection code will not be repeated.