tags:

views:

82

answers:

2

I am trying to use some open source java library and that library has JCE as one of its dependencies. If I am using Java 1.6, do I need to download a JCE library separately or is it part of it? Seems like bountycastle.org (the open source provider for JCE) does not have any JCE listed for 1.4+

A: 

Yes it is part of Java 6.

Kees de Kooter
+2  A: 

JCE is bundled with JavaSE as of 1.4, according to JCA's documentation.

R. Bemrose
Thanks, just read the documentation myself :)
Anu
Note that by default you are limited to 128-bit keys. For larger keys you need the Unlimited Strength Jurisdiction Policy Files.https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jce_policy-6-oth-JPR@CDS-CDS_Developer
Devon_C_Miller