|
From: <pe...@us...> - 2003-11-22 00:22:56
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers
In directory sc8-pr-cvs1:/tmp/cvs-serv16986/src/java/org/neuclear/commons/crypto/signers
Modified Files:
JCESigner.java TestCaseSigner.java
Log Message:
All unit tests in commons, id and xmlsec now work.
AssetController now successfully processes payments in the unit test.
Payment Web App has working form that creates a TransferRequest presents it to the signer
and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
Index: JCESigner.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/JCESigner.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** JCESigner.java 21 Nov 2003 04:43:41 -0000 1.7
--- JCESigner.java 22 Nov 2003 00:22:52 -0000 1.8
***************
*** 2,5 ****
--- 2,11 ----
* $Id$
* $Log$
+ * Revision 1.8 2003/11/22 00:22:52 pelle
+ * All unit tests in commons, id and xmlsec now work.
+ * AssetController now successfully processes payments in the unit test.
+ * Payment Web App has working form that creates a TransferRequest presents it to the signer
+ * and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
+ *
* Revision 1.7 2003/11/21 04:43:41 pelle
* EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
***************
*** 138,142 ****
ki = KeyStore.getInstance(type, provider);
ki.load(in, agent.getPassPhrase("KeyStore Passphrase for" + name));
! System.out.println("Successfully loaded JCESigner: " + name + " type: " + ki.getType() + " size: " + ki.size());
return ki;
} catch (KeyStoreException e) {
--- 144,148 ----
ki = KeyStore.getInstance(type, provider);
ki.load(in, agent.getPassPhrase("KeyStore Passphrase for" + name));
! // System.out.println("Successfully loaded JCESigner: " + name + " type: " + ki.getType() + " size: " + ki.size());
return ki;
} catch (KeyStoreException e) {
Index: TestCaseSigner.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/signers/TestCaseSigner.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** TestCaseSigner.java 21 Nov 2003 04:43:41 -0000 1.6
--- TestCaseSigner.java 22 Nov 2003 00:22:52 -0000 1.7
***************
*** 29,32 ****
--- 29,38 ----
$Id$
$Log$
+ Revision 1.7 2003/11/22 00:22:52 pelle
+ All unit tests in commons, id and xmlsec now work.
+ AssetController now successfully processes payments in the unit test.
+ Payment Web App has working form that creates a TransferRequest presents it to the signer
+ and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
+
Revision 1.6 2003/11/21 04:43:41 pelle
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
***************
*** 104,108 ****
private static InputStream getKeyStore() {
final URL url = TestCaseSigner.class.getClassLoader().getResource(KEYSTORE);
! System.out.println("loading keystore from: " + url.toString());
return TestCaseSigner.class.getClassLoader().getResourceAsStream(KEYSTORE);
--- 110,114 ----
private static InputStream getKeyStore() {
final URL url = TestCaseSigner.class.getClassLoader().getResource(KEYSTORE);
! // System.out.println("loading keystore from: " + url.toString());
return TestCaseSigner.class.getClassLoader().getResourceAsStream(KEYSTORE);
|