|
From: Pelle B. <pe...@us...> - 2004-03-19 22:31:42
|
Update of /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19896/src/java/org/neuclear/xml Modified Files: AbstractElementProxy.java Log Message: Changes in the XMLSignature class, which is now Abstract there are currently 3 implementations for: - Enveloped - DataObjects - (Enveloping) - Any for interop testing mainly. Index: AbstractElementProxy.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml/AbstractElementProxy.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** AbstractElementProxy.java 2 Mar 2004 23:30:43 -0000 1.11 --- AbstractElementProxy.java 19 Mar 2004 22:21:51 -0000 1.12 *************** *** 2,5 **** --- 2,11 ---- * $Id$ * $Log$ + * Revision 1.12 2004/03/19 22:21:51 pelle + * Changes in the XMLSignature class, which is now Abstract there are currently 3 implementations for: + * - Enveloped + * - DataObjects - (Enveloping) + * - Any for interop testing mainly. + * * Revision 1.11 2004/03/02 23:30:43 pelle * Renamed SignatureInfo to SignedInfo as that is the name of the Element. *************** *** 132,135 **** --- 138,142 ---- import org.dom4j.QName; import org.neuclear.xml.xmlsec.XMLSecTools; + import org.neuclear.xml.xmlsec.XMLSecurityException; public abstract class AbstractElementProxy implements ElementProxy { *************** *** 247,252 **** } ! public byte[] canonicalize() throws XMLException { ! return XMLSecTools.canonicalize(this); } /* --- 254,259 ---- } ! public byte[] canonicalize() throws XMLSecurityException { ! return XMLSecTools.canonicalize(element); } /* |