Home > OS >  how would i import Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy into bui
how would i import Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy into bui

Time:08-29

how would i import Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy into build.gradle, i am unfamiliar with working with gradle and need this for a project

CodePudding user response:

Quick note: The JCE Unlimited Strength Jurisdiction Policy is included in all Java Versions starting with 8u161 and subsequently is no longer necessary to install manually for Java versions released 2018 or later.

If for any reason you actually have to work with an older JDK I'm affraid Gradle won't be much of a help to install the policy extensions. Since those have to installed into the JDKs security folder this is not so much a build task but more of a topic for your infrastructure setup

CodePudding user response:

You use the implementation key word for that followed after the dependency you want.
Here is an example for that:

implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
  • Related