Sha256: 13a7fa643cae273922bf632aa4106c26b9575153f43596fc0e2d1e80e111b9b1
Contents?: true
Size: 391 Bytes
Versions: 110
Compression:
Stored size: 391 Bytes
Contents
module Saml module Elements class Signature class CanonicalizationMethod include Saml::Base tag "CanonicalizationMethod" namespace 'ds' attribute :algorithm, String, :tag => "Algorithm" def initialize(*args) @algorithm = "http://www.w3.org/2001/10/xml-exc-c14n#" super(*args) end end end end end
Version data entries
110 entries across 110 versions & 1 rubygems