certificate_unknown(46) #293
Replies: 2 comments 2 replies
-
According to https://stackoverflow.com/questions/57556909/ssl-alert-number-46-alert-certificate-unknown-how-to-ignore-this-exceptions this seems to be an issue with the truststore???? Please try and check the truststore you use for the TLS connection |
Beta Was this translation helpful? Give feedback.
-
I have found out what the reason for the error was. I was getting the error because of the way I was setting up my BouncyCastleProvider: Before: Security.insertProviderAt(new BouncyCastleProvider(), 2);
Security.insertProviderAt(new BouncyCastleJsseProvider(), 3); After (Working): Security.insertProviderAt(new BouncyCastleProvider(), 2);
// Security.insertProviderAt(new BouncyCastleJsseProvider(), 3); Removing the |
Beta Was this translation helpful? Give feedback.
-
Hey there,
I recently started receiving the error:
I was wondering if anyone had experienced the same issue and could elaborate a bit on what the message involves. From what I have been able to read about the error it is caused by the inability to perform the TLS handshake. I do however not know what prevents it from doing so.
I have tried researching the general error, but have not been able to find any solutions.
OBS. bouncycastle.version is 1.70. I am also using phase4 v3.0.1.
I will happily provide any additional code, just let me know :)
Beta Was this translation helpful? Give feedback.
All reactions