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-RSAKeyValue
 8      #
 9      # @since 0.3.0
10      class RSAKeyValue
11        attr_accessor :modulus, :exponent
12      end
13    end
14  end
15end