SSLPoke icon indicating copy to clipboard operation
SSLPoke copied to clipboard

Java tool for testing validity (certificates) of trust stores

Results 3 SSLPoke issues
Sort by recently updated
recently updated
newest added

Hello Is it possible to send more user-friendly error in case of missing or wrong keystore password? java.net.SocketException: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: sun.security.ssl.SSLContextImpl$DefaultSSLContext) OR javax.net.ssl.SSLException:...

help wanted
research needed

`java -Dhttp.proxy.host=proxy.acme.org -Dhttp.proxy.port=3128 SSLPoke test.acme.org 443 ` If you try to use proxy, SSLPoke do not use it.

SSLPoke should support proxy Here i am creating version of SSLPoke with proxy ``` import javax.net.ssl.SSLSocket; import javax.net.ssl.SSLSocketFactory; import java.io.*; import java.net.InetSocketAddress; import java.net.Proxy; import java.net.Socket; import java.util.Arrays; import java.util.Optional;...

Need review