RE: building c++ xsec1.1

2005-03-21 Thread Jesse Pelton
Assuming you're successfully linking against the Xalan library, the only other thing I can see is that there might be a namespace issue. XSec appears to be expecting Xalan to use the xalanc_1_7 namespace. If Xalan is using a different namespace (or none at all), the linker won't be able to r

RE: XML-Security-C with OpenSSL overly strict about base64 line lengths

2005-03-21 Thread Jesse Pelton
That looks like it should solve the problem. I didn't actually try it out, because I'm trying to stay as close as I can to released code, and the change you checked in is more extensive than my simple-minded one. My apologies for not checking CVS first. But maybe it's for the best; I'm inclined

RE: building c++ xsec1.1

2005-03-21 Thread harish suvarna
By commenting the #define XSEC_NO_XALAN  line, I  build  the debug version. Then I am trying to execute the simpleHmac, simpleDecrypt programs. I am getting the crash. The debugger shows it crashes in xsecdomutils.cpp while deleting the array of chars. But another overloadedversion of strEquals()(c

Getting the hash and calculating the signature value by other means

2005-03-21 Thread Elvira Rubio
Hello, I need to implement a signature in such a way that before signing a document, I have to obtain the document digest, then I sign it by means of any external module, such as a hardware one, and then I set the signature value to a XMLSignature object. Is it possible to accomplish that wi