Sha256: 787cebb3df67fb48e35150d2f969f99e624a293fd72bd8e2125def2b1793e3fd
Contents?: true
Size: 401 Bytes
Versions: 3
Compression:
Stored size: 401 Bytes
Contents
# frozen_string_literal: true module Xml module Kit class KeyInfo # An implementation of the RSAKeyValue element. # https://www.w3.org/TR/xmldsig-core1/#sec-RetrievalMethod # # @since 0.3.0 class RetrievalMethod attr_accessor :uri, :type def initialize @type = "#{Namespaces::XMLENC}EncryptedKey" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
xml-kit-0.6.0 | lib/xml/kit/key_info/retrieval_method.rb |
xml-kit-0.5.0 | lib/xml/kit/key_info/retrieval_method.rb |
xml-kit-0.4.0 | lib/xml/kit/key_info/retrieval_method.rb |