From the course: Learn Java Cryptography

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Java Cryptography Extensions (JCE)

Java Cryptography Extensions (JCE) - Java Tutorial

From the course: Learn Java Cryptography

Java Cryptography Extensions (JCE)

- [Narrator] The Java Cryptograpy Extension is by far the most common provider that you will use as a Java developer. The JCE as it's also known by, is the default provider for Oracle Java, and in fact, it comes out of the box with every JDK download. Now the JCE provides implementations for every single engine, however it does not support every algorithm or every variation of those algorithms that exists in the world today and as such, you may need to use third party providers to do the work that you want to do. Now I wanna talk a little bit about the concept of the unlimited strength JCE. Prior to Java 8, update 151, JCE Unlimited Strength was a separate download. What this essentially meant, was that key sizes could not be used if you did not download this separate piece of software. Now since Java 8.151, the JCE Unlimited Strength is now included by default with the JDK download, however, it's turned off. There's…

Contents