Sha256: 6d3a1854e2ac6bf8beafdf41a229c5da3a42e9fb9c9babd335cae3b6c67fd776
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
module Saml module Kit module XmlTemplatable include ::Xml::Kit::Templatable def template_path root_path = __dir__ template_name = "#{self.class.name.split('::').last.underscore}.builder" File.join(root_path, 'builders/templates/', template_name) end # Returns true if an embedded signature is requested and at least one signing certificate is available via the configuration. def sign? return configuration.sign? if embed_signature.nil? (embed_signature && configuration.sign?) || (embed_signature && signing_key_pair.present?) end def encrypt_with(key_pair) self.encrypt = true self.encryption_certificate = key_pair.certificate end def digest_method configuration.digest_method end def signature_method configuration.signature_method end def signing_key_pair @signing_key_pair || configuration.key_pairs(use: :signing).last end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
saml-kit-1.0.9 | lib/saml/kit/xml_templatable.rb |
saml-kit-1.0.8 | lib/saml/kit/xml_templatable.rb |
saml-kit-1.0.7 | lib/saml/kit/xml_templatable.rb |