Update README.md

Updated README.md with information about TLS issues
This commit is contained in:
Gideon le Grange 2014-03-25 20:34:34 +02:00
parent f30d28ffab
commit a8dae95e49
1 changed files with 5 additions and 1 deletions

View File

@ -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.