I am writing programmes in Java 8. (May upgrade to Java 11 later). The programmes are basically two servers, with APIs talk with each others.
Since I would like to use the TLS1.3 protocol, I found OpenJSSE may be a good choice for me (which support TLS1.3 for Java 8.) However, after I added the dependency of OpenJSSE 1.1.4, I don't know what to do...
I know it sounds stupid, but I hardly found any tutorial about the library. (apart from "-XX:+UseOpenJSSE")
For example, I would like to use ChaCha20KeyGenerator, but it is a final class with protected methods. I just cannot call them successfully. Or I am using it completely wrong?