|
From: <pe...@us...> - 2004-02-19 00:37:35
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19622/src/java/org/neuclear/commons/crypto Modified Files: Base64.java Log Message: Discovered several incompatabilities with the xmlsig implementation. Have been working on getting it working. Currently there is still a problem with enveloping signatures and it seems enveloped signatures done via signers. Index: Base64.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/Base64.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Base64.java 10 Jan 2004 00:01:40 -0000 1.3 --- Base64.java 19 Feb 2004 00:27:34 -0000 1.4 *************** *** 1,4 **** --- 1,8 ---- /* $Id$ * $Log$ + * Revision 1.4 2004/02/19 00:27:34 pelle + * Discovered several incompatabilities with the xmlsig implementation. Have been working on getting it working. + * Currently there is still a problem with enveloping signatures and it seems enveloped signatures done via signers. + * * Revision 1.3 2004/01/10 00:01:40 pelle * Implemented new Schema for Transfer* *************** *** 158,162 **** public static String encodeClean(final byte[] bytes) { ! return LINE_SEPARATOR+ encode(bytes)+LINE_SEPARATOR; } --- 162,166 ---- public static String encodeClean(final byte[] bytes) { ! return LINE_SEPARATOR+ encode(bytes,76)+LINE_SEPARATOR; } |