|
From: <pe...@us...> - 2004-01-19 17:53:17
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/applets In directory sc8-pr-cvs1:/tmp/cvs-serv32020/src/java/org/neuclear/commons/crypto/applets Modified Files: KeyGenerationTask.java KeyGeneratorApplet.java Log Message: Various clean ups Index: KeyGenerationTask.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/applets/KeyGenerationTask.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** KeyGenerationTask.java 19 Dec 2003 00:31:15 -0000 1.3 --- KeyGenerationTask.java 19 Jan 2004 17:53:14 -0000 1.4 *************** *** 1,6 **** package org.neuclear.commons.crypto.applets; - import java.security.KeyPairGenerator; import java.security.KeyPair; /** --- 1,6 ---- package org.neuclear.commons.crypto.applets; import java.security.KeyPair; + import java.security.KeyPairGenerator; /** *************** *** 11,14 **** --- 11,17 ---- * $Id$ * $Log$ + * Revision 1.4 2004/01/19 17:53:14 pelle + * Various clean ups + * * Revision 1.3 2003/12/19 00:31:15 pelle * Lots of usability changes through out all the passphrase agents and end user tools. Index: KeyGeneratorApplet.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/applets/KeyGeneratorApplet.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** KeyGeneratorApplet.java 19 Dec 2003 00:31:15 -0000 1.3 --- KeyGeneratorApplet.java 19 Jan 2004 17:53:14 -0000 1.4 *************** *** 4,15 **** import java.applet.Applet; - import java.util.Random; - import java.security.SecureRandom; - import java.security.NoSuchAlgorithmException; - import java.security.KeyPairGenerator; - import java.security.KeyPair; import java.awt.*; - import java.awt.event.ActionListener; import java.awt.event.ActionEvent; /** --- 4,14 ---- import java.applet.Applet; import java.awt.*; import java.awt.event.ActionEvent; + import java.awt.event.ActionListener; + import java.security.KeyPair; + import java.security.KeyPairGenerator; + import java.security.NoSuchAlgorithmException; + import java.security.SecureRandom; /** *************** *** 20,23 **** --- 19,25 ---- * $Id$ * $Log$ + * Revision 1.4 2004/01/19 17:53:14 pelle + * Various clean ups + * * Revision 1.3 2003/12/19 00:31:15 pelle * Lots of usability changes through out all the passphrase agents and end user tools. |