Search results for query: *

  1. C

    Reference element with incorrect format

    if i put URI="#xmldsig-3bb686c0-cf09-4625-a91f-2f769047e857-keyinfo in third Reference is ok, but when I put URI="#xmldsig-3bb686c0-cf09-4625-a91f-2f769047e857-signedprops, how is it not recognizing -signedprops
  2. C

    Reference element with incorrect format

    third Reference, if you put empty in the URI, it signs but if you put Something of the Reference error poorly fortified.
  3. C

    Reference element with incorrect format

    static void SignXmlWithCert(XmlDocument doc, X509Certificate2 cert) { const string signedPropsIdSuffix = "-signedprops"; var signedXml = new SignedXml(doc) { SigningKey = cert.GetRSAPrivateKey() }...
  4. C

    Reference element with incorrect format

    I changed it because according to the rules it had to have an algorithm, SHA 256 bits and this one has three References, just like this example <ds:SignatureMethod Algorithm="xmldsig-more namespace"></ds:SignatureMethod> <ds:Reference Id="xmldsig-3c108bee-8a17-41e0-bcda-89e211245a80-ref0"...
  5. C

    Reference element with incorrect format

    I want to sign an xml, so it's giving an error: Reference element with incorrect format XMLDSig standard, must also comply with the XAdES-BES standard i send one exemple this is my cod static void SignXmlWithCert(XmlDocument doc, X509Certificate2 cert) { const string signedPropsIdSuffix =...
Back
Top Bottom