Example #1
0
 public static XmlElement Generate(XmlElement xmlElement, string elementId, AsymmetricAlgorithm signingKey, KeyInfo keyInfo, SignedXml signedXml, string inclusiveNamespacesPrefixList, string digestMethod, string signatureMethod)
 {
     try
     {
         XmlSignature.RemoveSignature(xmlElement);
         signedXml.SigningKey = signingKey;
         signedXml.SignedInfo.CanonicalizationMethod = "http://www.w3.org/2001/10/xml-exc-c14n#";
         Reference reference = new Reference();
         reference.Uri = "#" + elementId;
         reference.AddTransform((Transform) new XmlDsigEnvelopedSignatureTransform());
         if (!string.IsNullOrEmpty(digestMethod))
         {
             reference.DigestMethod = digestMethod;
         }
         XmlDsigExcC14NTransform excC14Ntransform = new XmlDsigExcC14NTransform();
         //if (!string.IsNullOrEmpty(inclusiveNamespacesPrefixList))
         //    excC14Ntransform.InclusiveNamespacesPrefixList = inclusiveNamespacesPrefixList;
         reference.AddTransform((Transform)excC14Ntransform);
         signedXml.AddReference(reference);
         signedXml.KeyInfo = keyInfo;
         if (!string.IsNullOrEmpty(signatureMethod))
         {
             signedXml.SignedInfo.SignatureMethod = signatureMethod;
         }
         signedXml.ComputeSignature();
         return(signedXml.GetXml());
     }
     catch (Exception ex)
     {
         throw new SamlSignatureException("Failed to generate XML signature.", ex);
     }
 }
        public static void Generate(XmlElement xmlElement, AsymmetricAlgorithm signingKey, X509Certificate2 x509Certificate, string inclusiveNamespacesPrefixList, string digestMethod, string signatureMethod)
        {
            if (inclusiveNamespacesPrefixList == null)
            {
                inclusiveNamespacesPrefixList = "#default md saml ds xs xsi";
            }
            XmlElement xmlSignature = XmlSignature.Generate(xmlElement, SAMLMetadataSignature.GetID(xmlElement), signingKey, x509Certificate, (SignedXml) new SignedMetadata(xmlElement), inclusiveNamespacesPrefixList, digestMethod, signatureMethod);

            SAMLMetadataSignature.AddSignature(xmlElement, xmlSignature);
        }
Example #3
0
        public static void RemoveSignature(XmlElement xmlElement)
        {
            XmlElement signatureElement = XmlSignature.GetSignatureElement(xmlElement);

            if (signatureElement == null)
            {
                return;
            }
            xmlElement.RemoveChild((XmlNode)signatureElement);
        }
Example #4
0
        public static XmlElement GetCertificateElement(XmlElement xmlElement)
        {
            XmlElement signatureElement = XmlSignature.GetSignatureElement(xmlElement);

            if (signatureElement == null)
            {
                return((XmlElement)null);
            }
            return((XmlElement)signatureElement.SelectSingleNode("//*[local-name(.) = 'X509Certificate' and namespace-uri(.) = 'http://www.w3.org/2000/09/xmldsig#']"));
        }
Example #5
0
        public static bool Verify(XmlElement xmlElement, KeyInfoX509Data keyInfoX509Data, SignedXml signedXml)
        {
            if (keyInfoX509Data.Certificates.Count == 0)
            {
                throw new SamlSignatureException("No X.509 certificates in key info.");
            }
            X509Certificate2 x509Certificate = new X509Certificate2((X509Certificate)keyInfoX509Data.Certificates[0]);

            return(XmlSignature.Verify(xmlElement, x509Certificate, signedXml));
        }
Example #6
0
        public static bool Verify(XmlElement xmlElement, KeyInfo keyInfo, SignedXml signedXml)
        {
            AsymmetricAlgorithm signingKeyFromKeyInfo = XmlSignature.GetSigningKeyFromKeyInfo(keyInfo);

            if (signingKeyFromKeyInfo == null)
            {
                throw new SamlSignatureException("No signing key could be found in the key info.");
            }
            return(XmlSignature.Verify(xmlElement, signingKeyFromKeyInfo, signedXml));
        }
Example #7
0
        public static XmlElement Generate(XmlElement xmlElement, string elementId, AsymmetricAlgorithm signingKey, KeyInfoX509Data keyInfoX509Data, SignedXml signedXml, string inclusiveNamespacesPrefixList, string digestMethod, string signatureMethod)
        {
            KeyInfo keyInfo;

            try
            {
                keyInfo = new KeyInfo();
                keyInfo.AddClause((KeyInfoClause)keyInfoX509Data);
            }
            catch (Exception ex)
            {
                throw new SamlSignatureException("Failed to create key info using X.509 data.", ex);
            }
            return(XmlSignature.Generate(xmlElement, elementId, signingKey, keyInfo, signedXml, inclusiveNamespacesPrefixList, digestMethod, signatureMethod));
        }
Example #8
0
        public static XmlElement Generate(XmlElement xmlElement, string elementId, AsymmetricAlgorithm signingKey, X509Certificate2 x509Certificate, SignedXml signedXml, string inclusiveNamespacesPrefixList, string digestMethod, string signatureMethod)
        {
            X509Certificate2Collection x509Certificates;

            try
            {
                x509Certificates = new X509Certificate2Collection();
                x509Certificates.Add(x509Certificate);
            }
            catch (Exception ex)
            {
                throw new SamlSignatureException("Failed to create X.509 certificate collection.", ex);
            }
            return(XmlSignature.Generate(xmlElement, elementId, signingKey, x509Certificates, signedXml, inclusiveNamespacesPrefixList, digestMethod, signatureMethod));
        }
Example #9
0
 public static bool Verify(XmlElement xmlElement, AsymmetricAlgorithm signingKey, SignedXml signedXml)
 {
     try
     {
         XmlElement signatureElement = XmlSignature.GetSignatureElement(xmlElement);
         if (signatureElement == null)
         {
             throw new SamlSignatureException("The XML does not contain a signature.");
         }
         signedXml.LoadXml(signatureElement);
         return(signingKey == null?signedXml.CheckSignature() : signedXml.CheckSignature(signingKey));
     }
     catch (Exception ex)
     {
         throw new SamlSignatureException("Failed to verify the XML signature.", ex);
     }
 }
Example #10
0
 public static KeyInfo GetKeyInfo(XmlElement xmlElement)
 {
     try
     {
         XmlElement keyInfoElement = XmlSignature.GetKeyInfoElement(xmlElement);
         if (keyInfoElement == null)
         {
             return((KeyInfo)null);
         }
         KeyInfo keyInfo = new KeyInfo();
         keyInfo.LoadXml(keyInfoElement);
         return(keyInfo);
     }
     catch (Exception ex)
     {
         throw new SamlSignatureException("Failed to extract key info from XML.", ex);
     }
 }
Example #11
0
 public static X509Certificate2 GetCertificate(XmlElement xmlElement)
 {
     try
     {
         XmlElement certificateElement = XmlSignature.GetCertificateElement(xmlElement);
         if (certificateElement == null)
         {
             return((X509Certificate2)null);
         }
         string s = certificateElement.InnerText.Trim();
         if (string.IsNullOrEmpty(s))
         {
             return((X509Certificate2)null);
         }
         return(new X509Certificate2(Convert.FromBase64String(s)));
     }
     catch (Exception ex)
     {
         throw new SamlSignatureException("Failed to extract X.509 certificate from XML.", ex);
     }
 }
Example #12
0
 public static bool IsSigned(XmlElement xmlElement)
 {
     return(XmlSignature.GetSignatureElement(xmlElement) != null);
 }
 public static bool IsSigned(XmlElement xmlElement)
 {
     return(XmlSignature.IsSigned(xmlElement));
 }
 public static void RemoveSignature(XmlElement xmlElement)
 {
     XmlSignature.RemoveSignature(xmlElement);
 }
 public static KeyInfo GetKeyInfo(XmlElement xmlElement)
 {
     return(XmlSignature.GetKeyInfo(xmlElement));
 }
 public static X509Certificate2 GetCertificate(XmlElement xmlElement)
 {
     return(XmlSignature.GetCertificate(xmlElement));
 }
 public static bool Verify(XmlElement xmlElement, AsymmetricAlgorithm signingKey)
 {
     return(XmlSignature.Verify(xmlElement, signingKey, (SignedXml) new SignedMetadata(xmlElement)));
 }
 public static bool Verify(XmlElement xmlElement)
 {
     return(XmlSignature.Verify(xmlElement, (SignedXml) new SignedMetadata(xmlElement)));
 }
 public static bool Verify(XmlElement xmlElement, X509Certificate2 x509Certificate)
 {
     return(XmlSignature.Verify(xmlElement, x509Certificate, (SignedXml) new SignedMetadata(xmlElement)));
 }
 public static bool Verify(XmlElement xmlElement, KeyInfoX509Data keyInfoX509Data)
 {
     return(XmlSignature.Verify(xmlElement, keyInfoX509Data, (SignedXml) new SignedMetadata(xmlElement)));
 }
Example #21
0
 public static XmlElement Generate(XmlElement xmlElement, string elementId, AsymmetricAlgorithm signingKey, SignedXml signedXml, string inclusiveNamespacesPrefixList, string digestMethod, string signatureMethod)
 {
     return(XmlSignature.Generate(xmlElement, elementId, signingKey, new KeyInfo(), signedXml, inclusiveNamespacesPrefixList, digestMethod, signatureMethod));
 }
Example #22
0
 public static bool Verify(XmlElement xmlElement, X509Certificate2 x509Certificate, SignedXml signedXml)
 {
     return(XmlSignature.Verify(xmlElement, x509Certificate != null ? x509Certificate.PublicKey.Key : (AsymmetricAlgorithm)null, signedXml));
 }
Example #23
0
 public static bool Verify(XmlElement xmlElement, SignedXml signedXml)
 {
     return(XmlSignature.Verify(xmlElement, (AsymmetricAlgorithm)null, signedXml));
 }