Sha256: 7dff8c388b480e6ab28817dbd1b2055b0845f3c3dfff8c2a5b8c61215cc246b4

Contents?: true

Size: 355 Bytes

Versions: 3

Compression:

Stored size: 355 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-KeyValue
      #
      # @since 0.3.0
      class KeyValue
        include Templatable

        def rsa
          @rsa ||= RSAKeyValue.new
        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/key_value.rb
xml-kit-0.5.0 lib/xml/kit/key_info/key_value.rb
xml-kit-0.4.0 lib/xml/kit/key_info/key_value.rb