Re: JCE1.2

Jan Luehe (Jan.Luehe@Eng)
Thu, 23 Apr 1998 16:07:58 -0700 (PDT)

Date: Thu, 23 Apr 1998 16:07:58 -0700 (PDT)
From: Jan Luehe <Jan.Luehe@Eng>
Subject: Re: JCE1.2
To: java-security@web1.javasoft.com, jbowen@ces.on.ca

James:

> > I untarred the tar file and got with the documentation
> > jce12-ea-dom.jar (102738 in size).
> >
> What is the proper import lines to import the encrypto classes for
> example, SecretKeyFactory or PBEParameterSpec?

First, you may want to download a more recent version of
JCE 1.2 (JCE 1.2 Early Access 2) from the JDC.

The updated user guide has a lot of examples which are ready
to compile, which will show you how to import correctly:

import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.PBEParameterSpec;

etc.

Jan