About 56,500 results
Open links in new tab
  1. Validate X509 certificates using Java APis - Stack Overflow

    21 I am trying to validate a certificate against java key store and this is the code I am using is as below. If it completes succesfully then I assume the validation has gone through correctly, else if an …

  2. SSL Certificate Verification in Java - Stack Overflow

    Jun 22, 2012 · 33 If you're connecting using the Java SE SSL/TLS classes (e.g. SSLSocket or SSLEngine), you're using the Java Secure Socket Extension (JSSE). It will verify the remote party's …

  3. Accept server's self-signed ssl certificate in Java client

    See How do I accept a self-signed certificate with a Java HttpsURLConnection?. Obviously, it would be better if you can get the site to use a valid cert.

  4. x509certificate - How to get server certificate chain then verify it's ...

    So how do I retrieve the server certificate chain? My understanding is that getServerCertificateChain() should return an array of X509Certificate objects and that this class has methods I can use to …

  5. X.509 Certificate validation with Java and Bouncycastle

    From a programmer's perspective, you need a few things to validate an X.509 certificate. A set of "trust anchors"—the root certificates of CAs that you rely on. These should be protected from tampering, …

  6. Java HTTPS client certificate authentication - Stack Overflow

    This PKCS#12 file will be used by the Java client to present the client certificate to the server when the server has explicitly requested the client to authenticate. See the Wikipedia article on TLS for an …

  7. Is there a java setting for disabling certificate validation?

    Sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: java.net.UnknownHostException:oscp.thawte.com …

  8. Java - verifying certificate with system TrustStore - Stack Overflow

    6 Premise: I have a certificate and I want to verify that the system 'trusts' this certificate (signed by a trusted root CA by Java / Operating System) I have found some varying solutions on how to …

  9. How to bypass ssl certificate checking in java - Stack Overflow

    I want access a SOAP webservice url having https hosted in a remote vm. I am getting an exception while accessing it using HttpURLConnection. Here's my code: import javax.net.ssl.*; import java.io.

  10. Validating certificate chain in Java from truststore

    I have a certificate chain as der encoded byte[][] array to verify. I also have a truststore file. After I create X509Certificate[] from that byte array[][] and initializing trustmanager, how wil...