|
From: <pe...@us...> - 2003-12-10 23:55:48
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto In directory sc8-pr-cvs1:/tmp/cvs-serv1459/src/java/org/neuclear/commons/crypto Modified Files: CryptoTools.java RawCertificate.java Log Message: Did some cleaning up in the builders Fixed some stuff in IdentityCreator New maven goal to create executable jarapp We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons. Will release shortly. Index: CryptoTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/CryptoTools.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CryptoTools.java 6 Dec 2003 00:16:35 -0000 1.6 --- CryptoTools.java 10 Dec 2003 23:55:45 -0000 1.7 *************** *** 2,5 **** --- 2,12 ---- * $Id$ * $Log$ + * Revision 1.7 2003/12/10 23:55:45 pelle + * Did some cleaning up in the builders + * Fixed some stuff in IdentityCreator + * New maven goal to create executable jarapp + * We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons. + * Will release shortly. + * * Revision 1.6 2003/12/06 00:16:35 pelle * Updated various areas in NSTools. *************** *** 25,29 **** * Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit. * SignedNamedObject now contains the full xml which is returned with getEncoded() ! * This means that it is now possible to further send on or process a SignedNamedObject, leaving * NamedObjectBuilder for its original purposes of purely generating new Contracts. * NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it. --- 32,36 ---- * Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit. * SignedNamedObject now contains the full xml which is returned with getEncoded() ! * This means that it is now possible to further receive on or process a SignedNamedObject, leaving * NamedObjectBuilder for its original purposes of purely generating new Contracts. * NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it. Index: RawCertificate.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/RawCertificate.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RawCertificate.java 6 Dec 2003 00:16:35 -0000 1.3 --- RawCertificate.java 10 Dec 2003 23:55:45 -0000 1.4 *************** *** 26,29 **** --- 26,36 ---- $Id$ $Log$ + Revision 1.4 2003/12/10 23:55:45 pelle + Did some cleaning up in the builders + Fixed some stuff in IdentityCreator + New maven goal to create executable jarapp + We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons. + Will release shortly. + Revision 1.3 2003/12/06 00:16:35 pelle Updated various areas in NSTools. *************** *** 43,47 **** Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit. SignedNamedObject now contains the full xml which is returned with getEncoded() ! This means that it is now possible to further send on or process a SignedNamedObject, leaving NamedObjectBuilder for its original purposes of purely generating new Contracts. NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it. --- 50,54 ---- Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit. SignedNamedObject now contains the full xml which is returned with getEncoded() ! This means that it is now possible to further receive on or process a SignedNamedObject, leaving NamedObjectBuilder for its original purposes of purely generating new Contracts. NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it. |