Sha256: 11aab5c7014188e15d441e244f0dfef7950eaf3ad45504a6a1563a3231eb3ffc

Contents?: true

Size: 671 Bytes

Versions: 6

Compression:

Stored size: 671 Bytes

Contents

xml.Signature "xmlns" => Saml::Kit::Namespaces::XMLDSIG do
  xml.SignedInfo do
    xml.CanonicalizationMethod Algorithm: "http://www.w3.org/2001/10/xml-exc-c14n#"
    xml.SignatureMethod Algorithm: signature_method
    xml.Reference URI: "##{reference_id}" do
      xml.Transforms do
        xml.Transform Algorithm: "http://www.w3.org/2000/09/xmldsig#enveloped-signature"
        xml.Transform Algorithm: "http://www.w3.org/2001/10/xml-exc-c14n#"
      end
      xml.DigestMethod Algorithm: digest_method
      xml.DigestValue ""
    end
  end
  xml.SignatureValue ""
  xml.KeyInfo do
    xml.X509Data do
      xml.X509Certificate certificate.stripped
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
saml-kit-0.3.0 lib/saml/kit/builders/templates/xml_signature.builder
saml-kit-0.2.18 lib/saml/kit/builders/templates/xml_signature.builder
saml-kit-0.2.17 lib/saml/kit/builders/templates/xml_signature.builder
saml-kit-0.2.16 lib/saml/kit/builders/templates/xml_signature.builder
saml-kit-0.2.15 lib/saml/kit/builders/templates/xml_signature.builder
saml-kit-0.2.14 lib/saml/kit/builders/templates/xml_signature.builder