class Acme::Client::JWK::RSA
def initialize(private_key)
private_key - A OpenSSL::PKey::RSA instance.
Instantiate a new RSA JWK.
def initialize(private_key) unless private_key.is_a?(OpenSSL::PKey::RSA) raise ArgumentError, 'private_key must be a OpenSSL::PKey::RSA' end @private_key = private_key end