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-KeyValue
 8      #
 9      # @since 0.3.0
10      class KeyValue
11        include Templatable
12
13        def rsa
14          @rsa ||= RSAKeyValue.new
15        end
16      end
17    end
18  end
19end