Re: XSL transform in C++

2004-07-20 Thread Berin Lautenbach
Ian, Ouch. Can you send me a copy of the resulting XML file with included? (Quicker than me setting up a project to test.) Cheers, Berin Ian Alderman wrote: I was able to make some progress on debugging this. Debugging by printing the SignedInfo bytes as they get hashed (in TXFMSHA1.cp

How to decrypt AES encryption

2004-07-20 Thread Dominik Schadow
Hello, how can I decrypt an AES encrypted XML-document? I understand how to do it with DESede: File kekFile = new File(keyFile); DESedeKeySpec keySpec = new DESedeKeySpec(JavaUtils.getBytesFromFile(keyFile)); SecretKeyFactory skf = SecretKeyFactory.getInstance(“DESede”); SecretKey key = skf.gener

Re: XSL transform in C++

2004-07-20 Thread Ian Alderman
OK, I added stdout and stderr to http://www.cs.wisc.edu/~alderman/xsec/ -Ian On Tue, 20 Jul 2004, Berin Lautenbach wrote: > Ian, > > Ouch. > > Can you send me a copy of the resulting XML file with > included? (Quicker than me setting up a project to test.) > > Cheers, > Berin > > >

DO NOT REPLY [Bug 29188] - Minor clean-ups and speed/memory improvment

2004-07-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 29188] - Minor clean-ups and speed/memory improvment

2004-07-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

JDK 1.4.2_05 incompatibility

2004-07-20 Thread Scott M Stark
I was seeing an IllegalAccessError in some code using the xmlsec jar when switching from JDK 1.4.2_04 to 1.4.2_05 so I pulled down the code to compile it and this fails under JDK 1.4.2_05: [EMAIL PROTECTED] xml-security-1_1_0]$ ant compile Buildfile: build.xml [taskdef] Could not load definition

Re: How to decrypt AES encryption

2004-07-20 Thread Vishal Mahajan
Dominik Schadow wrote: Hello, how can I decrypt an AES encrypted XML-document? I understand how to do it with DESede: File kekFile = new File(keyFile); DESedeKeySpec keySpec = new DESedeKeySpec(JavaUtils.getBytesFromFile(keyFile)); SecretKeyFactory skf = SecretKeyFactory.getInstance(“DESed