Top "Jce" questions

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

Using BouncyCastle for a simple HTTPS query

Here's a simplified version of the code I'm using to perform simple HTTPS requests: // Assume the variables host, file and …

java ssl https bouncycastle jce
Java X509 Certificate parsing and validating

I'm trying to process X509 certificates in several steps and running into a couple of problems. I'm new to JCE …

java validation x509certificate pki jce
NoSuchAlgorithmException: Algorithm HmacSHA1 not available

Look at the following line of java: Mac.getInstance("HmacSHA1"); If I put this in a simple test program, it …

java cryptography jce james
How would I use Maven to install the JCE Unlimited Strength Policy files?

Some code I have requires the JCE unlimited Strength Policy Files. I'd like to add this dependency into the Maven …

java maven-2 jce
Which JCE providers are FIPS 140-2 compliant?

What Java Cryptography Extension (JCE) providers are FIPS 140-2 compliant? More specifically, does the Sun/Oracle provider qualify?

java cryptography jce fips
Restrict cipher suites on JRE level

Our Java application exposes a lot of different interfaces (SMTP, FTP, HTTP), secured by SSL/TLS. The goal now is …

java jce
AES/CBC/PKCS5Padding issue

I am trying to encrypt and decrypt some simple text. But for some reason I am getting a strange error: …

java cryptography aes jce
No Java folder located in Library despite JDK installation

Currently running OSX El Capitan on a recently set up computer. I'm trying to set up Java's unlimited crypto policy …

java encryption java-8 jce
How to use Bouncy Castle lightweight API with AES and PBE

I have a block of ciphertext that was created using the JCE algorithim "PBEWithSHA256And256BitAES-CBC-BC". The provider is BouncyCastle. …

java cryptography aes bouncycastle jce
What's wrong with IBM's JCE provider?

I have a JCE test that works fine with all Sun JDKs I have tried, but fails with various IBM …

java jce