Top "Sslengine" questions

SSLEngine is a Java 5.0 class which provides SSL/TLS services but is transport independent.

Apache: Invalid command 'SSLEngine', perhaps misspelled or defined by a module not included in the server configuration

When configure apache2 virtual hosts for ssl/https connection, after adding configuration and enable the configuration with this command " a2…

apache ssl virtualhost sslengine
Making SSLEngine use TLSv1.2 on Android (4.4.2)?

Folks, I'm hoping there's something obvious that I'm missing, and I hope someone will be able to shed some light. …

android sslengine
create an SSLContext instance using a Bouncy Castle provider

I'm stuck at the creation of an SSLContext (which I want to use to instantiate an SSLEngine to handle encrypted …

java ssl bouncycastle sslengine
Get SSLException form the SSLEngine Wrap method during handshake process

When I run the client Handshake process on my Java application in order to establish SSL connection, I get SSLException …

java ssl exception sslengine
SSL Handshaking Using Self-Signed Certs and SSLEngine (JSSE)

I have been tasked to implement a custom/standalone Java webserver that can process SSL and non-SSL messages on the …

java nio jsse sslengine
Spring WebClient throws javax.net.ssl.SSLException: SSLEngine closed already when used heavily

That's my code: WebClient.create().post() .uri(URI.create(url)) .header("Authorization", "Basic " + Base64Utils.encodeToString(("username:password").getBytes(UTF_8))) .…

netty spring-webflux sslengine
Java SSLEngine example

I found an example how to implement Java SSLEngine here. Unfortunately the source code of the server is not complete. …

java sslengine
How to set custom DH group in Java SSLEngine to prevent Logjam attack?

The new Logjam attack on TLS is based on common DH groups. This link recommends generating a new, custom 2048-bit …

java ssl sslengine
SSL and SocketChannel

Ideally, I only need a simple SSLSocketChannel. I already have a component that reads and writes message over ordinary SocketChannel, …

java ssl nio socketchannel sslengine