The xml-signature tag has no wiki summary.
6
votes
1answer
536 views
Problem with conversion of org.dom4j.Document to org.w3c.dom.Document and XML Signature
I have some classes that already use DOM4J to read XML files and provide
getter methods to the data. Now, I need to add the possibility of checking XML digital
signatures.
Using org.w3c.dom and ...
6
votes
2answers
154 views
Open Source XPath Filter 2.0 implementation
Does anyone know of an open source implementation for XPath Filter 2.0, preferrably in Java? But any other language would also be fine. The standard is not that new, so something should exist, but I ...
6
votes
2answers
1k views
What do I need to know about XML Signatures to get SAML working?
At work we have a web app that we'll need to interface with another company's web app using Single Sign On validated by SAML. Our web apps are written in PHP, and it's obviously irrelevant what ...
5
votes
2answers
1k views
Is there an easier way to sign an XML document in Java?
I'm trying to digitally sign an XML document using Java. I've got an implementation working with some references I've found that use various implementations in the javax.xml.crypto.dsig package.
...
4
votes
1answer
353 views
how to apply XML signature on outgoing SOAP messages
I have generated stubs and bindings using cxf codegen. Everything runs fine however the server still rejects the message because of security issues. Basically I have 3 layers to take care all of ...
4
votes
3answers
619 views
XML signature verification library in C?
Are there any available libraries in C language to verify XML signatures? I could only find one library for C++ from http://santuario.apache.org/cindex.html .
3
votes
1answer
964 views
How to verify an XML signature in an iOS application?
I've been tossed into the world of XML digital signatures with an iOS project I'm working on; I need to verify the digital signature of a SAML assertion.
I've been reading a lot about validating XML ...
3
votes
1answer
652 views
Library to manage XAdES signatures in Java
I'm looking for a Java library that allows the creation and verification of XAdES signatures (the more formats, the better: XAdES-BES, XAdES-C, XAdES-X-L, etc.).
The most interesting implementations ...
3
votes
4answers
1k views
How to produce XML signature with no whitespaces and line-breaks in Java?
I work with the brazilian "Nota Fiscal Eletronica" project, in which they define a standart way to sign XML documents.
Recently, they started to require that there are absolutely no whitespaces ...
3
votes
1answer
859 views
Manual verification of XML Signature
I can successfully do manual reference validation (canonicalize every referenced element --> SHA1 --> Base64 --> check if it's the same of DigestValue content) but I fail with the verification of the ...
3
votes
3answers
3k views
XML Signature: How to calculate the digest value?
I have an XML like this
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar>
<value>A</value>
</bar>
<bar>
<value>B</value>
...
3
votes
2answers
1k views
.NET Signed XML Prefix
Is there a way to set the prefix on the Signature of a Signed XML Document (SignedXml class in .Net)?
So instead of:
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#>
...
...
3
votes
3answers
213 views
Authoritative source on XML-sig
We have a question with regards to XML-sig and need detail about the optional elements as well as some of the canonicalization and transform stuff. We're writing a spec for a very small XML-syntax ...
2
votes
1answer
185 views
“Unrecognized configuration section” after adding Signature to Config File using SignedXml.ComputeSignature
I have a Windows Forms application built using the .NET 3.5 Framework which self hosts a WCF service. The service & app function properly on their own.
Concerned about having the address & ...
2
votes
1answer
373 views
How to get X509Certificate from certificate store and generate xml signature data?
How can I get X509Certificate from certificate store and then generate XML SignatureData in .net C#?
2
votes
2answers
1k views
Problem with custom namespace with SignedXml
The problem occurs when I sign XML documents containing namespace prefixes
and namespace references and then validate it. The validation always fails
(returns false) in this case. When I remove the ...
2
votes
3answers
295 views
javax.xml.crypto.dsig validation using the public key in the xml
Using javax.xml.crypto.dsig, how do I unmarshal and validate an XMLSignature without specifying the public key? The public key appears to be in the signed xml, but I can't figure out a way to get it.
...
2
votes
1answer
153 views
Strip off XMLDSIG elements from incoming XML POST to WCF RESTful Service
Folks,
I am building a RESTful service that is secured by providing an XMLDSIG XML signature at the bottom of the XML document. When I send this document to the server, the WCF service is doing the ...
2
votes
0answers
825 views
SignedXml checksignature returns false
I've looked at other posts on here regarding this issue and none of them seem to address my situation.
I've been trying to verify a SAML assertion for the last week and I have 2 clients that have ...
2
votes
1answer
815 views
Signature Validation issues using OpenSAML & OpenSSO
We are using OpenSAML on the Service Provider Site to provide SSO for our clients. Our client(ID Provider) is using OpenSSO on their end. The SAML Response being posted by OpenSSO is a little ...
2
votes
4answers
843 views
How To Use XmlDsigC14NTransform Class in C#
I am trying to canonicalize an xml node by using System.Security.Cryptography.Xml.XMLDsigC14nTransform class of c# .net Framework 2.0.
The instance expects three different input types, NodeList, ...
2
votes
0answers
267 views
How to validate different XML Signatures with Apache CXF?
In our SOA we will have to sign a request (parts of the SOAP header) twice:
1. the client signs the SOAP body
2. the ESB signs a part of the SOAP header, so that the service can verify, that the ...
2
votes
2answers
1k views
XML Canonicalization algorithm gives two difference results when called directly than when called as part of an xml digital signature?
I'm getting two different hashes of the same xml document when I directly canonicalize some xml than when I perform a digital signature on it which also performs the same canonicalization algoririth ...
1
vote
2answers
70 views
How can I sign an XML Document in java with certificate and private key?
I am trying to sign an XML document with a private key and a certificate which are retrieved from the database correctly. This private key and certificate where given to me so I am not quite sure ...
1
vote
0answers
20 views
Validating xml signature on part of the document using SignedXml
I am using the SignedXml class to validate a signature in a XML document. The signature refers only to part to the document.
I am able to verify the signature, but how can I be sure that the ...
1
vote
1answer
733 views
How to get WS-Security certificate to be accepted by Java application
So I've been struggling with WS-Security for some time now, slowly making progress. First let me briefly describe my setup. I have Java application running in a tomcat, which offers a webservice ...
1
vote
1answer
178 views
Is there any reason to use CAdES over XAdES for advanced electronic signatures?
I haven't been able to find any reason of why should anyone prefer to implement a CAdES oriented electronic signature software solution over a XAdES oriented one.
There are a lot more open libraries ...
1
vote
0answers
399 views
How to sign xml document (xmldsig), append signature into signed element (!) and stay valid (C# ok, java not)
I have to sign an XML document and append an XML signature into the same element that is being signed. C# validator is happy with it's own result but the online Java validator reports failure ...
1
vote
1answer
217 views
XML Digital Signature with Inclusive Canonicalization
I am trying to implement a routine for XML Digital Signature, and I am able to correcty calculate the hash of the information to be signed. However, I am facing problems with the signature itself, ...
1
vote
0answers
83 views
JSR-105 Referring for Signature Output
I'm working on the W3C Widgets Spec. I have a question with JSR-105 features.
Can anybody please tell me how to refer the XMLObject?
<?xml version="1.0" encoding="UTF-8"?>
<Signature>
...
1
vote
0answers
227 views
how to get certificate chain (root and intermediates) from an XMLSignature
Hi I just have contructed an org.apache.xml.security.signature.XMLSignature from a xml that complies with xmldsig w3c recommendation, and I can see that the xml contains all certificate chain in
...
1
vote
0answers
219 views
Verify detached xml signature using public key
I want to verify detached XML signature using a public key.
I have tried using gpg and openssl but no success.
Can anyone provide me with steps to verify using a public key.
1
vote
2answers
571 views
X509Certificate and XmlDsig
I need, in C# (4.0), to sign an XML (XMLDSig Envelope) using a X509Certificate (a .p7b file provided by the one which should verify the signature)
I do not have experience in security, my knowledge ...
1
vote
1answer
544 views
Convert XML Dsig format to DER ASN.1 public key
I am working on an iPhone app that retrieves an RSA public key from an ASP.NET web service in the form:
<RSAKeyValue>
...
1
vote
1answer
381 views
Java equivalent of C# XML signing method
I have written the following .NET Framework 3.5 C# method which takes the location of an XML document and an object representation of an X509 digital certificate (with a private key) and returns the ...
1
vote
0answers
120 views
decrypting encryptedID xml element
I have an encryptedID element within a SAML response that I need to decrypt. The other end has encrypted the NameID element using the public key provided by me from a X509 cert. I've read tutorials to ...
1
vote
1answer
286 views
XML Digital Signature created with XPATH keeps adding schema definition to every node
I have a simple XML and i signed the XML using XPATH query like //*[@isDigSignReqd = 'true']. Now, the signed XML contains the attributes like
xmlns="http://www.xyze.org/xservice" ...
1
vote
3answers
481 views
'Malformed Reference Element' when adding a reference based on an Id attribute with SignedXml class
Unable to sign element by Id attribute when there's a namespace prefix:
void Main()
{
var doc = new XmlDocument();
doc.LoadXml("<root xmlns:u=\"myuri\"><test ...
1
vote
2answers
219 views
Difference between signing a XML message using dsig:Signature and TLS Client Certificate
I realise this question may be a bit vague or I may be using incorrect terminology, that is because I am trying to get to grips with this stuff :).
I have a requirement to implement digital signing ...
1
vote
1answer
301 views
How to verify XML Digital Signature in native C++ without MSXML 5?
I'm considering using an XML dsig for basic app licensing. The app is native windows code (no .net). I can easily use .net to create a dsig offline, but then I want to verify it in native c++. From ...
1
vote
1answer
308 views
XML signature validation against remote certificate, with PHP
I'm working on a project where I need to validate an embedded signature in an XML file (SAML assertion) against a public key located on a remove server.
Has anyone done this in PHP?
1
vote
3answers
329 views
Crossbrowser XmlDsig
I am building a web site where the user has to digitally sign a xml reciept to confirm that he recieved the package. I am currently doing this using a custom ActiveX control in IE. I was wondering if ...
1
vote
2answers
2k views
How to generate DigestValue and SignatureValue for enveloped XML Signature using PHP/linux tool
i have been trying to find some examples on how to generate DigestValue and SignatureValue for XML signature (WSDL).
Below is a sample SOAP for the application:
<?xml version="1.0" ...
1
vote
1answer
984 views
digital signature - detached Pkcs#7 to XML-DSIG
I am struggling with the following scenario:
an XML-message is created client-side and digitally signed using mozilla's window.crypto.signText. After signing, the message and the signature are ...
1
vote
1answer
619 views
Read RSAPublicKey in Java from XML file
How to read RSA Public Key in Java from xml file?
This is file format.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<RSAKeyValue>
...
1
vote
1answer
644 views
SignedXml generates invalid signatures
I've been trying to get the XMLDSIG support in .NET to behave properly, more specifically the SignedXml class. I'm implementing a third party service and they've just recently started requiring that ...
1
vote
7answers
1k views
Digitally Sign Parts of a XML document
I have an XML document having structure similar to the following
<envelop>
<header>blaa</header>
<message>blaa blaa</message>
<footer></footer>
...
1
vote
3answers
1k views
What type of X509 Certificate to use for XML Signature?
I'm currently developing some software that uses XML Signing to transfer files securely between two machines. We're using X.509 certificates from our own CA as keys.
The CA (Windows 2003 server) ...
0
votes
0answers
23 views
WCF Client - Specifying the signature algorithm for WS-Security Timestamp signature
I have a WCF client that is sending a message to a non-WCF service and that service is having problems handling the HMAC-SHA1 signature method used to sign the WS-Security Timestamp element. Ideally, ...
0
votes
0answers
33 views
How to canonicalize XML in javascript?
Does someone know javascript library for xml canonicalization? I need to build canonical form of xml using Exclusive XML Canonicalization algorithm.
If there's no library for that, other suggestions ...