Top "Jce" questions

Java Cryptographic Extension : a pluggable cryptography framework where various providers can bring the desired functionality

Creating an X509 Certificate in Java without BouncyCastle?

Is it possible to sanely create an X509 Certificate in Java code without using the Bouncy Castle X509V*CertificateGenerator …

java x509certificate jce
local_policy.jar and US_export_policy.jar different with Unlimited Strength Vs Default.

In java platform documentation http://www.oracle.com/technetwork/java/javase/jrereadme-182762.html. Regarding the comment about /lib/security/local_…

java linux jce
Reading pkcs12 certificate information

I have a problem with reading certificate information. I want to read full information using java with bouncycastle library in …

java bouncycastle jce pkcs#12
How to install unlimited strength JCE for JRE 7 in MacOSX?

I installed Oracle JRE 7 (not JDK) for MacOSX but I can't locate where the JCE jurisdiction files are placed. I …

java macos jce
How to convert Byte array to PrivateKey or PublicKey type?

I am using RSA algorithm to generate public and private key final KeyPairGenerator keyGen = KeyPairGenerator.getInstance(ALGORITHM); keyGen.initialize(1024); final …

java cryptography private-key public-key jce
Why is a SecretKeySpec needed when deriving a key from a password in Java?

What is difference between SecretKey vs SecretKeySpec classes in Java? The documentation of SecretKeySpec says: it can be used to …

java cryptography jce secret-key
Checking if Unlimited Cryptography is available

How can I check, in Java code, if the current JVM have unlimited strength cryptography available?

java jce
Why are the JCE Unlimited Strength not included by default?

Setup Java doesn't offer out-of-the-box support for the JCE Unlimited Strength Policy Files This prevents users from using AES-256, the …

java encryption jce
bouncycastle + JBoss AS7: JCE cannot authenticate the provider BC

I use BouncyCastle for encryption in my application. When I run it standalone, everything works fine. However, if I put …

java security jboss bouncycastle jce
Check for JCE Unlimited Strength Jurisdiction Policy files

I am usure if the JCE Unlimited Strength Jurisdiction Policy files have been installed correctly in the JVM (because some …

java jce