main
1# frozen_string_literal: true
2
3module Xml
4 module Kit
5 class KeyInfo
6 # An implementation of the RSAKeyValue element.
7 # https://www.w3.org/TR/xmldsig-core1/#sec-RetrievalMethod
8 #
9 # @since 0.3.0
10 class RetrievalMethod
11 attr_accessor :uri, :type
12
13 def initialize
14 @type = "#{Namespaces::XMLENC}EncryptedKey"
15 end
16 end
17 end
18 end
19end