How to programatically using .NET C# to match a SignatureValue generated by SOAPUI












0














I've got a SOAPUI project which uses an X509 Client Certificate to digitally sign the Timestamp in a SOAP header. I need to programmatically create the digital signature in SOAP messages sent to the server using .NET (not using WCF).



SOAPUI Generated SOAP Message:



    <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
<soap:Header>
<wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
<wsse:Username>528725.RTCMACERT</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
<wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
<wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
</wsse:UsernameToken>
<wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
<ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:SignedInfo>
<ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
<ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
</ds:CanonicalizationMethod>
<ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
<ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
<ds:Transforms>
<ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
<ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
</ds:Transform>
</ds:Transforms>
<ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
</ds:Reference>
</ds:SignedInfo>
<ds:SignatureValue>e9+LmcpbcgZ+m282+57rIJjsU8oWjkrQrql5u9qmPxTkDjjjqOq0O8OOj+Ud3/L0p8w8bg07ByPK7RwfDCiZOZMvuqLup4wR+l7IKm ... LCakMIqQpuESXw==</ds:SignatureValue>
<ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
<wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
<wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
</wsse:SecurityTokenReference>
</ds:KeyInfo>
</ds:Signature>
<wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
<wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
<wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</soap:Header>
<soap:Body>
<xsd:cardInqMaintDisplayParam>
<cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
<cmaw:memberNumber>0</cmaw:memberNumber>
<cmaw:endUser>RTCMA</cmaw:endUser>
</xsd:cardInqMaintDisplayParam>
</soap:Body>
</soap:Envelope>




Code Generated SOAP Message:



<soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
<soap:Header>
<wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
<wsse:Username>528725.RTCMACERT</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
<wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
<wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
</wsse:UsernameToken>
<wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
<ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:SignedInfo>
<ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
<ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
</ds:CanonicalizationMethod>
<ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
<ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
<ds:Transforms>
<ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
<ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
</ds:Transform>
</ds:Transforms>
<ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
</ds:Reference>
</ds:SignedInfo>
<ds:SignatureValue>AvZBW8ejFNfnDFuWzAoNFBwXYjrQ2NVW/Ldj17E5D8XydWLskZTROMvaaSgcu72cgEgHUrC8mlhePduzvrjzP3Fuf18oRMaLhqGs85 ... eOegQ8EZHEp1ZQ==</ds:SignatureValue>
<ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
<wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
<wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
</wsse:SecurityTokenReference>
</ds:KeyInfo>
</ds:Signature>
<wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
<wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
<wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</soap:Header>
<soap:Body>
<xsd:cardInqMaintDisplayParam>
<cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
<cmaw:memberNumber>0</cmaw:memberNumber>
<cmaw:endUser>RTCMA</cmaw:endUser>
</xsd:cardInqMaintDisplayParam>
</soap:Body>
</soap:Envelope>


While I am able to generate a match DigestValue in the signature, I am unable to match the SignatureValue. Both the SOAPUI and .NET program use the same X509 Client Certificate.



Code snippet used to generate the Signature element in the SOAP header.



  X509Certificate2 cert = new X509Certificate2(File.ReadAllBytes(Settings.Default.CertFilePFX), Settings.Default.CertPassword, X509KeyStorageFlags.Exportable);

XmlDsigDocument xmlHeader = new XmlDsigDocument(); // Create a new XML document.

xmlHeader.Load ( new XmlTextReader ( FileName ) ); // Load the passed XML file using its name.

XmlNamespaceManager nSpMgr = new XmlNamespaceManager(xmlHeader.NameTable);
nSpMgr.AddNamespace ( "soap", CustomSignedXml.xmlSoapEnvelopeUrl );
nSpMgr.AddNamespace ( "wsu", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
nSpMgr.AddNamespace ( "wsse", CustomSignedXml.xmlOasisWSSSecurityExtUrl );
nSpMgr.AddNamespace ( "ec", CustomSignedXml.xmlOasisWSSSecurityExtUrl );

XPathNavigator docNav = xmlHeader.CreateNavigator();
XPathNavigator timestampNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsu:Timestamp", nSpMgr);
XPathNavigator binarysecuritytokenNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsse:BinarySecurityToken", nSpMgr);

string timestampID = timestampNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
string binarySecurityTokenID = binarysecuritytokenNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );

RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(new CspParameters(24));
rsaKey.PersistKeyInCsp = false;

string exportedKeyMaterial = cert.PrivateKey.ToXmlString(true);
rsaKey.FromXmlString ( exportedKeyMaterial );

CustomSignedXml signedXml = new CustomSignedXml(xmlHeader);
signedXml.SigningKey = rsaKey;
signedXml.Signature.Id = "SIG-0EDE7F54075E85BDF615420409941897";
signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;
signedXml.SignedInfo.SignatureMethod = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256";

XmlDsigExcC14NTransform canMethod = (XmlDsigExcC14NTransform)signedXml.SignedInfo.CanonicalizationMethodObject;
canMethod.InclusiveNamespacesPrefixList = "cmaw soap xsd";

Reference reference = new Reference();
reference.Uri = "#" + timestampID;
reference.DigestMethod = "http://www.w3.org/2001/04/xmlenc#sha256";

XmlDsigExcC14NTransform transformDataTS = new XmlDsigExcC14NTransform();
transformDataTS.InclusiveNamespacesPrefixList = "wsse cmaw soap xsd";

byte dataToHashTS = Encoding.UTF8.GetBytes(timestampNav.OuterXml);
transformDataTS.LoadInput ( new MemoryStream ( dataToHashTS ) );

reference.AddTransform ( transformDataTS );

signedXml.AddReference ( reference );

KeyInfo keyInfo = new KeyInfo();
keyInfo.Id = "KI-0EDE7F54075E85BDF615420409941825";

SecurityTokenReference skr = new SecurityTokenReference();
skr.Id = "STR-0EDE7F54075E85BDF615420409941836";
skr.Reference = binarySecurityTokenID; // Binary Security Token ID
skr.ValueType = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3";

keyInfo.AddClause ( skr );
signedXml.KeyInfo = keyInfo;

signedXml.ComputeSignature ( ); // Compute the signature

XmlElement xmlDigitalSignature = signedXml.GetXml();


SOAPUI WSS Settings



As you can see, the signature is generated using these properties:



Signature Algorithm: rsa-sha256
Signature Canonicalization: xml-exc-c14n#
Digest Algorithm: xmlenc#sha256



Or does someone know how to generate a SignatureValue given a DigestValue? If yes, do you do you use the Base64 DigitalValue or do you convert the Base64 DigestValue to byte array to calculate the SignatureValue.



Any guidance would be appreciated because I've been working on this for weeks to get the correct SignatureValue.










share|improve this question



























    0














    I've got a SOAPUI project which uses an X509 Client Certificate to digitally sign the Timestamp in a SOAP header. I need to programmatically create the digital signature in SOAP messages sent to the server using .NET (not using WCF).



    SOAPUI Generated SOAP Message:



        <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
    <soap:Header>
    <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
    <wsse:Username>528725.RTCMACERT</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
    <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
    <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
    </wsse:UsernameToken>
    <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
    <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
    <ds:SignedInfo>
    <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
    </ds:CanonicalizationMethod>
    <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
    <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
    <ds:Transforms>
    <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
    </ds:Transform>
    </ds:Transforms>
    <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
    <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
    </ds:Reference>
    </ds:SignedInfo>
    <ds:SignatureValue>e9+LmcpbcgZ+m282+57rIJjsU8oWjkrQrql5u9qmPxTkDjjjqOq0O8OOj+Ud3/L0p8w8bg07ByPK7RwfDCiZOZMvuqLup4wR+l7IKm ... LCakMIqQpuESXw==</ds:SignatureValue>
    <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
    <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
    <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
    </wsse:SecurityTokenReference>
    </ds:KeyInfo>
    </ds:Signature>
    <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
    <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
    <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
    </wsu:Timestamp>
    </wsse:Security>
    </soap:Header>
    <soap:Body>
    <xsd:cardInqMaintDisplayParam>
    <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
    <cmaw:memberNumber>0</cmaw:memberNumber>
    <cmaw:endUser>RTCMA</cmaw:endUser>
    </xsd:cardInqMaintDisplayParam>
    </soap:Body>
    </soap:Envelope>




    Code Generated SOAP Message:



    <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
    <soap:Header>
    <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
    <wsse:Username>528725.RTCMACERT</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
    <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
    <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
    </wsse:UsernameToken>
    <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
    <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
    <ds:SignedInfo>
    <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
    </ds:CanonicalizationMethod>
    <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
    <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
    <ds:Transforms>
    <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
    </ds:Transform>
    </ds:Transforms>
    <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
    <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
    </ds:Reference>
    </ds:SignedInfo>
    <ds:SignatureValue>AvZBW8ejFNfnDFuWzAoNFBwXYjrQ2NVW/Ldj17E5D8XydWLskZTROMvaaSgcu72cgEgHUrC8mlhePduzvrjzP3Fuf18oRMaLhqGs85 ... eOegQ8EZHEp1ZQ==</ds:SignatureValue>
    <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
    <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
    <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
    </wsse:SecurityTokenReference>
    </ds:KeyInfo>
    </ds:Signature>
    <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
    <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
    <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
    </wsu:Timestamp>
    </wsse:Security>
    </soap:Header>
    <soap:Body>
    <xsd:cardInqMaintDisplayParam>
    <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
    <cmaw:memberNumber>0</cmaw:memberNumber>
    <cmaw:endUser>RTCMA</cmaw:endUser>
    </xsd:cardInqMaintDisplayParam>
    </soap:Body>
    </soap:Envelope>


    While I am able to generate a match DigestValue in the signature, I am unable to match the SignatureValue. Both the SOAPUI and .NET program use the same X509 Client Certificate.



    Code snippet used to generate the Signature element in the SOAP header.



      X509Certificate2 cert = new X509Certificate2(File.ReadAllBytes(Settings.Default.CertFilePFX), Settings.Default.CertPassword, X509KeyStorageFlags.Exportable);

    XmlDsigDocument xmlHeader = new XmlDsigDocument(); // Create a new XML document.

    xmlHeader.Load ( new XmlTextReader ( FileName ) ); // Load the passed XML file using its name.

    XmlNamespaceManager nSpMgr = new XmlNamespaceManager(xmlHeader.NameTable);
    nSpMgr.AddNamespace ( "soap", CustomSignedXml.xmlSoapEnvelopeUrl );
    nSpMgr.AddNamespace ( "wsu", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
    nSpMgr.AddNamespace ( "wsse", CustomSignedXml.xmlOasisWSSSecurityExtUrl );
    nSpMgr.AddNamespace ( "ec", CustomSignedXml.xmlOasisWSSSecurityExtUrl );

    XPathNavigator docNav = xmlHeader.CreateNavigator();
    XPathNavigator timestampNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsu:Timestamp", nSpMgr);
    XPathNavigator binarysecuritytokenNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsse:BinarySecurityToken", nSpMgr);

    string timestampID = timestampNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
    string binarySecurityTokenID = binarysecuritytokenNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );

    RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(new CspParameters(24));
    rsaKey.PersistKeyInCsp = false;

    string exportedKeyMaterial = cert.PrivateKey.ToXmlString(true);
    rsaKey.FromXmlString ( exportedKeyMaterial );

    CustomSignedXml signedXml = new CustomSignedXml(xmlHeader);
    signedXml.SigningKey = rsaKey;
    signedXml.Signature.Id = "SIG-0EDE7F54075E85BDF615420409941897";
    signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;
    signedXml.SignedInfo.SignatureMethod = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256";

    XmlDsigExcC14NTransform canMethod = (XmlDsigExcC14NTransform)signedXml.SignedInfo.CanonicalizationMethodObject;
    canMethod.InclusiveNamespacesPrefixList = "cmaw soap xsd";

    Reference reference = new Reference();
    reference.Uri = "#" + timestampID;
    reference.DigestMethod = "http://www.w3.org/2001/04/xmlenc#sha256";

    XmlDsigExcC14NTransform transformDataTS = new XmlDsigExcC14NTransform();
    transformDataTS.InclusiveNamespacesPrefixList = "wsse cmaw soap xsd";

    byte dataToHashTS = Encoding.UTF8.GetBytes(timestampNav.OuterXml);
    transformDataTS.LoadInput ( new MemoryStream ( dataToHashTS ) );

    reference.AddTransform ( transformDataTS );

    signedXml.AddReference ( reference );

    KeyInfo keyInfo = new KeyInfo();
    keyInfo.Id = "KI-0EDE7F54075E85BDF615420409941825";

    SecurityTokenReference skr = new SecurityTokenReference();
    skr.Id = "STR-0EDE7F54075E85BDF615420409941836";
    skr.Reference = binarySecurityTokenID; // Binary Security Token ID
    skr.ValueType = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3";

    keyInfo.AddClause ( skr );
    signedXml.KeyInfo = keyInfo;

    signedXml.ComputeSignature ( ); // Compute the signature

    XmlElement xmlDigitalSignature = signedXml.GetXml();


    SOAPUI WSS Settings



    As you can see, the signature is generated using these properties:



    Signature Algorithm: rsa-sha256
    Signature Canonicalization: xml-exc-c14n#
    Digest Algorithm: xmlenc#sha256



    Or does someone know how to generate a SignatureValue given a DigestValue? If yes, do you do you use the Base64 DigitalValue or do you convert the Base64 DigestValue to byte array to calculate the SignatureValue.



    Any guidance would be appreciated because I've been working on this for weeks to get the correct SignatureValue.










    share|improve this question

























      0












      0








      0







      I've got a SOAPUI project which uses an X509 Client Certificate to digitally sign the Timestamp in a SOAP header. I need to programmatically create the digital signature in SOAP messages sent to the server using .NET (not using WCF).



      SOAPUI Generated SOAP Message:



          <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
      <soap:Header>
      <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
      <wsse:Username>528725.RTCMACERT</wsse:Username>
      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
      <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
      <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
      </wsse:UsernameToken>
      <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
      <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
      <ds:SignedInfo>
      <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:CanonicalizationMethod>
      <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
      <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
      <ds:Transforms>
      <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:Transform>
      </ds:Transforms>
      <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
      <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
      </ds:Reference>
      </ds:SignedInfo>
      <ds:SignatureValue>e9+LmcpbcgZ+m282+57rIJjsU8oWjkrQrql5u9qmPxTkDjjjqOq0O8OOj+Ud3/L0p8w8bg07ByPK7RwfDCiZOZMvuqLup4wR+l7IKm ... LCakMIqQpuESXw==</ds:SignatureValue>
      <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
      <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
      <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
      </wsse:SecurityTokenReference>
      </ds:KeyInfo>
      </ds:Signature>
      <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
      <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
      <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
      </wsu:Timestamp>
      </wsse:Security>
      </soap:Header>
      <soap:Body>
      <xsd:cardInqMaintDisplayParam>
      <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
      <cmaw:memberNumber>0</cmaw:memberNumber>
      <cmaw:endUser>RTCMA</cmaw:endUser>
      </xsd:cardInqMaintDisplayParam>
      </soap:Body>
      </soap:Envelope>




      Code Generated SOAP Message:



      <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
      <soap:Header>
      <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
      <wsse:Username>528725.RTCMACERT</wsse:Username>
      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
      <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
      <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
      </wsse:UsernameToken>
      <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
      <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
      <ds:SignedInfo>
      <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:CanonicalizationMethod>
      <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
      <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
      <ds:Transforms>
      <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:Transform>
      </ds:Transforms>
      <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
      <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
      </ds:Reference>
      </ds:SignedInfo>
      <ds:SignatureValue>AvZBW8ejFNfnDFuWzAoNFBwXYjrQ2NVW/Ldj17E5D8XydWLskZTROMvaaSgcu72cgEgHUrC8mlhePduzvrjzP3Fuf18oRMaLhqGs85 ... eOegQ8EZHEp1ZQ==</ds:SignatureValue>
      <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
      <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
      <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
      </wsse:SecurityTokenReference>
      </ds:KeyInfo>
      </ds:Signature>
      <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
      <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
      <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
      </wsu:Timestamp>
      </wsse:Security>
      </soap:Header>
      <soap:Body>
      <xsd:cardInqMaintDisplayParam>
      <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
      <cmaw:memberNumber>0</cmaw:memberNumber>
      <cmaw:endUser>RTCMA</cmaw:endUser>
      </xsd:cardInqMaintDisplayParam>
      </soap:Body>
      </soap:Envelope>


      While I am able to generate a match DigestValue in the signature, I am unable to match the SignatureValue. Both the SOAPUI and .NET program use the same X509 Client Certificate.



      Code snippet used to generate the Signature element in the SOAP header.



        X509Certificate2 cert = new X509Certificate2(File.ReadAllBytes(Settings.Default.CertFilePFX), Settings.Default.CertPassword, X509KeyStorageFlags.Exportable);

      XmlDsigDocument xmlHeader = new XmlDsigDocument(); // Create a new XML document.

      xmlHeader.Load ( new XmlTextReader ( FileName ) ); // Load the passed XML file using its name.

      XmlNamespaceManager nSpMgr = new XmlNamespaceManager(xmlHeader.NameTable);
      nSpMgr.AddNamespace ( "soap", CustomSignedXml.xmlSoapEnvelopeUrl );
      nSpMgr.AddNamespace ( "wsu", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
      nSpMgr.AddNamespace ( "wsse", CustomSignedXml.xmlOasisWSSSecurityExtUrl );
      nSpMgr.AddNamespace ( "ec", CustomSignedXml.xmlOasisWSSSecurityExtUrl );

      XPathNavigator docNav = xmlHeader.CreateNavigator();
      XPathNavigator timestampNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsu:Timestamp", nSpMgr);
      XPathNavigator binarysecuritytokenNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsse:BinarySecurityToken", nSpMgr);

      string timestampID = timestampNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
      string binarySecurityTokenID = binarysecuritytokenNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );

      RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(new CspParameters(24));
      rsaKey.PersistKeyInCsp = false;

      string exportedKeyMaterial = cert.PrivateKey.ToXmlString(true);
      rsaKey.FromXmlString ( exportedKeyMaterial );

      CustomSignedXml signedXml = new CustomSignedXml(xmlHeader);
      signedXml.SigningKey = rsaKey;
      signedXml.Signature.Id = "SIG-0EDE7F54075E85BDF615420409941897";
      signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;
      signedXml.SignedInfo.SignatureMethod = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256";

      XmlDsigExcC14NTransform canMethod = (XmlDsigExcC14NTransform)signedXml.SignedInfo.CanonicalizationMethodObject;
      canMethod.InclusiveNamespacesPrefixList = "cmaw soap xsd";

      Reference reference = new Reference();
      reference.Uri = "#" + timestampID;
      reference.DigestMethod = "http://www.w3.org/2001/04/xmlenc#sha256";

      XmlDsigExcC14NTransform transformDataTS = new XmlDsigExcC14NTransform();
      transformDataTS.InclusiveNamespacesPrefixList = "wsse cmaw soap xsd";

      byte dataToHashTS = Encoding.UTF8.GetBytes(timestampNav.OuterXml);
      transformDataTS.LoadInput ( new MemoryStream ( dataToHashTS ) );

      reference.AddTransform ( transformDataTS );

      signedXml.AddReference ( reference );

      KeyInfo keyInfo = new KeyInfo();
      keyInfo.Id = "KI-0EDE7F54075E85BDF615420409941825";

      SecurityTokenReference skr = new SecurityTokenReference();
      skr.Id = "STR-0EDE7F54075E85BDF615420409941836";
      skr.Reference = binarySecurityTokenID; // Binary Security Token ID
      skr.ValueType = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3";

      keyInfo.AddClause ( skr );
      signedXml.KeyInfo = keyInfo;

      signedXml.ComputeSignature ( ); // Compute the signature

      XmlElement xmlDigitalSignature = signedXml.GetXml();


      SOAPUI WSS Settings



      As you can see, the signature is generated using these properties:



      Signature Algorithm: rsa-sha256
      Signature Canonicalization: xml-exc-c14n#
      Digest Algorithm: xmlenc#sha256



      Or does someone know how to generate a SignatureValue given a DigestValue? If yes, do you do you use the Base64 DigitalValue or do you convert the Base64 DigestValue to byte array to calculate the SignatureValue.



      Any guidance would be appreciated because I've been working on this for weeks to get the correct SignatureValue.










      share|improve this question













      I've got a SOAPUI project which uses an X509 Client Certificate to digitally sign the Timestamp in a SOAP header. I need to programmatically create the digital signature in SOAP messages sent to the server using .NET (not using WCF).



      SOAPUI Generated SOAP Message:



          <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
      <soap:Header>
      <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
      <wsse:Username>528725.RTCMACERT</wsse:Username>
      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
      <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
      <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
      </wsse:UsernameToken>
      <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
      <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
      <ds:SignedInfo>
      <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:CanonicalizationMethod>
      <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
      <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
      <ds:Transforms>
      <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:Transform>
      </ds:Transforms>
      <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
      <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
      </ds:Reference>
      </ds:SignedInfo>
      <ds:SignatureValue>e9+LmcpbcgZ+m282+57rIJjsU8oWjkrQrql5u9qmPxTkDjjjqOq0O8OOj+Ud3/L0p8w8bg07ByPK7RwfDCiZOZMvuqLup4wR+l7IKm ... LCakMIqQpuESXw==</ds:SignatureValue>
      <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
      <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
      <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
      </wsse:SecurityTokenReference>
      </ds:KeyInfo>
      </ds:Signature>
      <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
      <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
      <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
      </wsu:Timestamp>
      </wsse:Security>
      </soap:Header>
      <soap:Body>
      <xsd:cardInqMaintDisplayParam>
      <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
      <cmaw:memberNumber>0</cmaw:memberNumber>
      <cmaw:endUser>RTCMA</cmaw:endUser>
      </xsd:cardInqMaintDisplayParam>
      </soap:Body>
      </soap:Envelope>




      Code Generated SOAP Message:



      <soap:Envelope xmlns:cmaw="http://estarstation.com/cmaWS/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://estarstation.com/xsd">
      <soap:Header>
      <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      <wsse:UsernameToken wsu:Id="UsernameToken-0EDE7F54075E85BDF615420409942248">
      <wsse:Username>528725.RTCMACERT</wsse:Username>
      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">tGupsbJwWtnQU1usa9hBFYWfnRk=</wsse:Password>
      <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">utFyPzosQNlMFihkXMCZuw==</wsse:Nonce>
      <wsu:Created>2018-11-12T16:43:14.224Z</wsu:Created>
      </wsse:UsernameToken>
      <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="X509-0EDE7F54075E85BDF615420409941614">MIIGIDCCBQigAwIBAgIQ ... OQl+57Pa5lM1Mj</wsse:BinarySecurityToken>
      <ds:Signature Id="SIG-0EDE7F54075E85BDF615420409941897" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
      <ds:SignedInfo>
      <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:CanonicalizationMethod>
      <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
      <ds:Reference URI="#TS-0EDE7F54075E85BDF615420409941283">
      <ds:Transforms>
      <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
      <ec:InclusiveNamespaces PrefixList="wsse cmaw soap xsd" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" />
      </ds:Transform>
      </ds:Transforms>
      <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
      <ds:DigestValue>fM/i6lk0onD4vDQtHrKKrv8JeT6IgqFwV3FBBeymS28=</ds:DigestValue>
      </ds:Reference>
      </ds:SignedInfo>
      <ds:SignatureValue>AvZBW8ejFNfnDFuWzAoNFBwXYjrQ2NVW/Ldj17E5D8XydWLskZTROMvaaSgcu72cgEgHUrC8mlhePduzvrjzP3Fuf18oRMaLhqGs85 ... eOegQ8EZHEp1ZQ==</ds:SignatureValue>
      <ds:KeyInfo Id="KI-0EDE7F54075E85BDF615420409941825">
      <wsse:SecurityTokenReference wsu:Id="STR-0EDE7F54075E85BDF615420409941836">
      <wsse:Reference URI="#X509-0EDE7F54075E85BDF615420409941614" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" />
      </wsse:SecurityTokenReference>
      </ds:KeyInfo>
      </ds:Signature>
      <wsu:Timestamp wsu:Id="TS-0EDE7F54075E85BDF615420409941283">
      <wsu:Created>2018-11-12T16:43:14Z</wsu:Created>
      <wsu:Expires>2018-11-12T16:43:44Z</wsu:Expires>
      </wsu:Timestamp>
      </wsse:Security>
      </soap:Header>
      <soap:Body>
      <xsd:cardInqMaintDisplayParam>
      <cmaw:cardNumber>5287250200316234</cmaw:cardNumber>
      <cmaw:memberNumber>0</cmaw:memberNumber>
      <cmaw:endUser>RTCMA</cmaw:endUser>
      </xsd:cardInqMaintDisplayParam>
      </soap:Body>
      </soap:Envelope>


      While I am able to generate a match DigestValue in the signature, I am unable to match the SignatureValue. Both the SOAPUI and .NET program use the same X509 Client Certificate.



      Code snippet used to generate the Signature element in the SOAP header.



        X509Certificate2 cert = new X509Certificate2(File.ReadAllBytes(Settings.Default.CertFilePFX), Settings.Default.CertPassword, X509KeyStorageFlags.Exportable);

      XmlDsigDocument xmlHeader = new XmlDsigDocument(); // Create a new XML document.

      xmlHeader.Load ( new XmlTextReader ( FileName ) ); // Load the passed XML file using its name.

      XmlNamespaceManager nSpMgr = new XmlNamespaceManager(xmlHeader.NameTable);
      nSpMgr.AddNamespace ( "soap", CustomSignedXml.xmlSoapEnvelopeUrl );
      nSpMgr.AddNamespace ( "wsu", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
      nSpMgr.AddNamespace ( "wsse", CustomSignedXml.xmlOasisWSSSecurityExtUrl );
      nSpMgr.AddNamespace ( "ec", CustomSignedXml.xmlOasisWSSSecurityExtUrl );

      XPathNavigator docNav = xmlHeader.CreateNavigator();
      XPathNavigator timestampNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsu:Timestamp", nSpMgr);
      XPathNavigator binarysecuritytokenNav = docNav.SelectSingleNode("/soap:Envelope/soap:Header/wsse:Security/wsse:BinarySecurityToken", nSpMgr);

      string timestampID = timestampNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );
      string binarySecurityTokenID = binarysecuritytokenNav.GetAttribute ( "Id", CustomSignedXml.xmlOasisWSSSecurityUtilUrl );

      RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(new CspParameters(24));
      rsaKey.PersistKeyInCsp = false;

      string exportedKeyMaterial = cert.PrivateKey.ToXmlString(true);
      rsaKey.FromXmlString ( exportedKeyMaterial );

      CustomSignedXml signedXml = new CustomSignedXml(xmlHeader);
      signedXml.SigningKey = rsaKey;
      signedXml.Signature.Id = "SIG-0EDE7F54075E85BDF615420409941897";
      signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;
      signedXml.SignedInfo.SignatureMethod = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256";

      XmlDsigExcC14NTransform canMethod = (XmlDsigExcC14NTransform)signedXml.SignedInfo.CanonicalizationMethodObject;
      canMethod.InclusiveNamespacesPrefixList = "cmaw soap xsd";

      Reference reference = new Reference();
      reference.Uri = "#" + timestampID;
      reference.DigestMethod = "http://www.w3.org/2001/04/xmlenc#sha256";

      XmlDsigExcC14NTransform transformDataTS = new XmlDsigExcC14NTransform();
      transformDataTS.InclusiveNamespacesPrefixList = "wsse cmaw soap xsd";

      byte dataToHashTS = Encoding.UTF8.GetBytes(timestampNav.OuterXml);
      transformDataTS.LoadInput ( new MemoryStream ( dataToHashTS ) );

      reference.AddTransform ( transformDataTS );

      signedXml.AddReference ( reference );

      KeyInfo keyInfo = new KeyInfo();
      keyInfo.Id = "KI-0EDE7F54075E85BDF615420409941825";

      SecurityTokenReference skr = new SecurityTokenReference();
      skr.Id = "STR-0EDE7F54075E85BDF615420409941836";
      skr.Reference = binarySecurityTokenID; // Binary Security Token ID
      skr.ValueType = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3";

      keyInfo.AddClause ( skr );
      signedXml.KeyInfo = keyInfo;

      signedXml.ComputeSignature ( ); // Compute the signature

      XmlElement xmlDigitalSignature = signedXml.GetXml();


      SOAPUI WSS Settings



      As you can see, the signature is generated using these properties:



      Signature Algorithm: rsa-sha256
      Signature Canonicalization: xml-exc-c14n#
      Digest Algorithm: xmlenc#sha256



      Or does someone know how to generate a SignatureValue given a DigestValue? If yes, do you do you use the Base64 DigitalValue or do you convert the Base64 DigestValue to byte array to calculate the SignatureValue.



      Any guidance would be appreciated because I've been working on this for weeks to get the correct SignatureValue.







      soapui digital-signature






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 '18 at 22:01









      user3061783user3061783

      11




      11
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270740%2fhow-to-programatically-using-net-c-sharp-to-match-a-signaturevalue-generated-by%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270740%2fhow-to-programatically-using-net-c-sharp-to-match-a-signaturevalue-generated-by%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini