About 50 results
Open links in new tab
  1. ssl - How to fix the "java.security.cert.CertificateException: No ...

    Oct 23, 2013 · Locate the system default 'cacerts' file for your Java installation. Take a look at How to obtain the location of cacerts of the default java installation? Import the certs into that cacerts file: …

  2. Why java.security.NoSuchProviderException No such provider: BC?

    The jar (bcprov-jdk16-145.jar) has been added to the project, Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider()) has been added to the class, and …

  3. Java argument to specify Java.Security file for JVM

    15 I'm looking for a java argument (or perhaps some different method) to allow me to specify a file to be used by the JVM as the java.security file, rather than using the one found in the JDK (in the JRE lib).

  4. How to add site list to Java Security without using the UI?

    Jun 16, 2014 · There is an exception list on java security tab like the picture below. I want to add websites to this list using the command line. Is it possible to do that?

  5. jvm - What java.security.egd option is for? - Stack Overflow

    Nov 22, 2019 · Java applications can and should use java.security.SecureRandom class to produce cryptographically strong random values by using a cryptographically strong pseudo-random number …

  6. How to import a .cer certificate into a java keystore?

    Importing .cer certificate file downloaded from browser (open the url and dig for details) into cacerts keystore in java_home\jre\lib\security worked for me, as opposed to attemps to generate and use my …

  7. security - How to force java server to accept only tls 1.2 and reject ...

    Sep 9, 2015 · I have a HTTPS web service running on Java 7. I need to make changes so that this service only accepts TLS1.2 connection and reject SSL3, TLS1.0 and TLS1.1. I have added the …

  8. java - SSL and cert keystore - Stack Overflow

    Aug 16, 2021 · SSL properties are set at the JVM level via system properties. Meaning you can either set them when you run the program (java -D....) Or you can set them in code by doing …

  9. Signed Application blocked by Java security settings

    Oct 8, 2015 · Signed Application blocked by Java security settings Asked 10 years, 2 months ago Modified 10 years, 1 month ago Viewed 2k times

  10. security - Why is Java labeled as a "secure" language? - Stack Overflow

    Oct 9, 2010 · In Java, you cannot access out-of-bound arrays, and you don't have pointers, and thus several security flaws like stack corruption or buffer overflow is impossible to exploit in Java. But …