|
From: <pe...@us...> - 2004-01-19 17:53:18
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers In directory sc8-pr-cvs1:/tmp/cvs-serv32020/src/java/org/neuclear/commons/crypto/signers Modified Files: DefaultSigner.java JCESigner.java PublicKeySource.java ServletSignerFactory.java Signer.java SimpleSigner.java TestCaseSigner.java Log Message: Various clean ups Index: DefaultSigner.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/DefaultSigner.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DefaultSigner.java 19 Dec 2003 00:31:15 -0000 1.4 --- DefaultSigner.java 19 Jan 2004 17:53:14 -0000 1.5 *************** *** 1,13 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.NeuClearException; import org.neuclear.commons.crypto.CryptoTools; - import org.neuclear.commons.crypto.CryptoException; import org.neuclear.commons.crypto.passphraseagents.PassPhraseAgent; import org.neuclear.commons.crypto.passphraseagents.UserCancellationException; - import java.io.FileNotFoundException; - import java.security.GeneralSecurityException; - /* NeuClear Distributed Transaction Clearing Platform --- 1,8 ---- *************** *** 30,33 **** --- 25,31 ---- $Id$ $Log$ + Revision 1.5 2004/01/19 17:53:14 pelle + Various clean ups + Revision 1.4 2003/12/19 00:31:15 pelle Lots of usability changes through out all the passphrase agents and end user tools. Index: JCESigner.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/JCESigner.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** JCESigner.java 22 Dec 2003 22:14:37 -0000 1.15 --- JCESigner.java 19 Jan 2004 17:53:14 -0000 1.16 *************** *** 2,5 **** --- 2,8 ---- * $Id$ * $Log$ + * Revision 1.16 2004/01/19 17:53:14 pelle + * Various clean ups + * * Revision 1.15 2003/12/22 22:14:37 pelle * Last minute cleanups and documentation prior to release 0.8.1 *************** *** 148,160 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.NeuClearException; - import org.neuclear.commons.Utility; import org.neuclear.commons.LowLevelException; import org.neuclear.commons.crypto.CryptoException; import org.neuclear.commons.crypto.CryptoTools; ! import org.neuclear.commons.crypto.jce.RawCertificate; import org.neuclear.commons.crypto.passphraseagents.PassPhraseAgent; import org.neuclear.commons.crypto.passphraseagents.UserCancellationException; - import org.neuclear.commons.crypto.passphraseagents.InteractiveAgent; import java.io.*; --- 151,161 ---- package org.neuclear.commons.crypto.signers; import org.neuclear.commons.LowLevelException; + import org.neuclear.commons.Utility; import org.neuclear.commons.crypto.CryptoException; import org.neuclear.commons.crypto.CryptoTools; ! import org.neuclear.commons.crypto.passphraseagents.InteractiveAgent; import org.neuclear.commons.crypto.passphraseagents.PassPhraseAgent; import org.neuclear.commons.crypto.passphraseagents.UserCancellationException; import java.io.*; Index: PublicKeySource.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/PublicKeySource.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PublicKeySource.java 19 Dec 2003 18:02:53 -0000 1.2 --- PublicKeySource.java 19 Jan 2004 17:53:14 -0000 1.3 *************** *** 1,6 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.crypto.CryptoException; - import java.security.PublicKey; --- 1,4 ---- *************** *** 25,28 **** --- 23,29 ---- $Id$ $Log$ + Revision 1.3 2004/01/19 17:53:14 pelle + Various clean ups + Revision 1.2 2003/12/19 18:02:53 pelle Revamped a lot of exception handling throughout the framework, it has been simplified in most places: Index: ServletSignerFactory.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/ServletSignerFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ServletSignerFactory.java 19 Dec 2003 00:31:15 -0000 1.5 --- ServletSignerFactory.java 19 Jan 2004 17:53:14 -0000 1.6 *************** *** 1,17 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.Utility; import org.neuclear.commons.NeuClearException; ! import org.neuclear.commons.servlets.ServletTools; import org.neuclear.commons.crypto.CryptoTools; import org.neuclear.commons.crypto.passphraseagents.*; import javax.servlet.ServletConfig; - import java.util.HashMap; - import java.util.Map; - import java.util.Collection; - import java.util.Collections; import java.io.FileNotFoundException; import java.security.GeneralSecurityException; /** --- 1,16 ---- package org.neuclear.commons.crypto.signers; import org.neuclear.commons.NeuClearException; ! import org.neuclear.commons.Utility; import org.neuclear.commons.crypto.CryptoTools; import org.neuclear.commons.crypto.passphraseagents.*; + import org.neuclear.commons.servlets.ServletTools; import javax.servlet.ServletConfig; import java.io.FileNotFoundException; import java.security.GeneralSecurityException; + import java.util.Collections; + import java.util.HashMap; + import java.util.Map; /** Index: Signer.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/Signer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Signer.java 19 Dec 2003 18:02:53 -0000 1.5 --- Signer.java 19 Jan 2004 17:53:14 -0000 1.6 *************** *** 2,5 **** --- 2,8 ---- * $Id$ * $Log$ + * Revision 1.6 2004/01/19 17:53:14 pelle + * Various clean ups + * * Revision 1.5 2003/12/19 18:02:53 pelle * Revamped a lot of exception handling throughout the framework, it has been simplified in most places: *************** *** 97,105 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.crypto.CryptoException; import org.neuclear.commons.crypto.passphraseagents.UserCancellationException; import java.security.PublicKey; - import java.security.cert.Certificate; --- 100,106 ---- Index: SimpleSigner.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/SimpleSigner.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** SimpleSigner.java 19 Dec 2003 18:02:53 -0000 1.9 --- SimpleSigner.java 19 Jan 2004 17:53:14 -0000 1.10 *************** *** 2,5 **** --- 2,8 ---- * $Id$ * $Log$ + * Revision 1.10 2004/01/19 17:53:14 pelle + * Various clean ups + * * Revision 1.9 2003/12/19 18:02:53 pelle * Revamped a lot of exception handling throughout the framework, it has been simplified in most places: *************** *** 127,131 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.NeuClearException; import org.neuclear.commons.LowLevelException; import org.neuclear.commons.crypto.CryptoException; --- 130,133 ---- *************** *** 133,137 **** import org.neuclear.commons.crypto.passphraseagents.PassPhraseAgent; import org.neuclear.commons.crypto.passphraseagents.UserCancellationException; - import org.neuclear.commons.crypto.passphraseagents.InteractiveAgent; import javax.crypto.Cipher; --- 135,138 ---- *************** *** 140,145 **** import java.io.*; import java.security.*; - import java.security.cert.*; - import java.security.cert.Certificate; import java.security.spec.KeySpec; import java.security.spec.PKCS8EncodedKeySpec; --- 141,144 ---- Index: TestCaseSigner.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/TestCaseSigner.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestCaseSigner.java 19 Dec 2003 00:31:16 -0000 1.9 --- TestCaseSigner.java 19 Jan 2004 17:53:14 -0000 1.10 *************** *** 1,6 **** package org.neuclear.commons.crypto.signers; - import org.neuclear.commons.NeuClearException; - import org.neuclear.commons.LowLevelException; import org.neuclear.commons.crypto.passphraseagents.AlwaysTheSamePassphraseAgent; import org.neuclear.commons.crypto.passphraseagents.PassPhraseAgent; --- 1,4 ---- *************** *** 8,12 **** import java.io.InputStream; import java.net.URL; - import java.security.GeneralSecurityException; /* --- 6,9 ---- *************** *** 30,33 **** --- 27,33 ---- $Id$ $Log$ + Revision 1.10 2004/01/19 17:53:14 pelle + Various clean ups + Revision 1.9 2003/12/19 00:31:16 pelle Lots of usability changes through out all the passphrase agents and end user tools. |