|
From: Pelle B. <pe...@us...> - 2004-04-14 00:11:32
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4424/src/java/org/neuclear/commons/crypto Modified Files: CryptoTools.java Log Message: Added a MessageLabel for handling errors, validation and info Save works well now. It's pretty much there I think. Index: CryptoTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/CryptoTools.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** CryptoTools.java 9 Apr 2004 20:02:54 -0000 1.20 --- CryptoTools.java 14 Apr 2004 00:10:52 -0000 1.21 *************** *** 2,5 **** --- 2,10 ---- * $Id$ * $Log$ + * Revision 1.21 2004/04/14 00:10:52 pelle + * Added a MessageLabel for handling errors, validation and info + * Save works well now. + * It's pretty much there I think. + * * Revision 1.20 2004/04/09 20:02:54 pelle * Added PrivateKey wrapping and unwrapping to CryptoTools with the methods: *************** *** 935,939 **** private static SecureRandom randSource; ! public final static String DEFAULT_KEYSTORE = System.getProperty("user.home") + "/.neuclear/keystore.jks"; public static final int RAND_BIT_LENGTH = 128; private static final long YPLUS20 = 20 * 365 * 24 * 60 * 60; --- 940,944 ---- private static SecureRandom randSource; ! public final static String DEFAULT_KEYSTORE = System.getProperty("user.home") + "/.neuclear/identities.jks"; public static final int RAND_BIT_LENGTH = 128; private static final long YPLUS20 = 20 * 365 * 24 * 60 * 60; |