|
From: <pe...@us...> - 2004-02-18 00:22:54
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29335/src/java/org/neuclear/commons/crypto Modified Files: CryptoTools.java Log Message: Many, many clean ups. I've readded Targets in a new method. Gotten rid of NamedObjectBuilder and revamped Identity and Resolvers Index: CryptoTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/CryptoTools.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** CryptoTools.java 18 Jan 2004 21:20:20 -0000 1.12 --- CryptoTools.java 18 Feb 2004 00:13:41 -0000 1.13 *************** *** 2,5 **** --- 2,9 ---- * $Id$ * $Log$ + * Revision 1.13 2004/02/18 00:13:41 pelle + * Many, many clean ups. I've readded Targets in a new method. + * Gotten rid of NamedObjectBuilder and revamped Identity and Resolvers + * * Revision 1.12 2004/01/18 21:20:20 pelle * Created Base32 encoder that now fully complies with Tyler's spec. *************** *** 747,750 **** --- 751,755 ---- || (asn1Bytes[2] != 2) || (i > 20) || (asn1Bytes[4 + rLength] != 2) || (j > 20)) { + throw new IOException("Invalid ASN.1 format of DSA signature"); } else { |