Module: SecureConf::OpenSSH::Keytype::Base

Included in:
RSA
Defined in:
lib/secure_conf/openssh.rb

Instance Method Summary collapse

Instance Method Details

#parse_der_private_key_contents(h, bio) ⇒ Object

Raises:



186
187
188
# File 'lib/secure_conf/openssh.rb', line 186

def parse_der_private_key_contents(h, bio)
  raise Error, "not implemented error: #{self.class.name}.parse_der_private_key_contents(h, bio)"
end

#parse_der_public_key_contents(h, bio) ⇒ Object

Raises:



182
183
184
# File 'lib/secure_conf/openssh.rb', line 182

def parse_der_public_key_contents(h, bio)
  raise Error, "not implemented error: #{self.class.name}.parse_der_public_key_contents(h, bio)"
end

#support?(keytype) ⇒ Boolean

Returns:

  • (Boolean)

Raises:



178
179
180
# File 'lib/secure_conf/openssh.rb', line 178

def support?(keytype)
  raise Error, "not implemented error: #{self.class.name}.support?(keytype)"
end

#to_openssl(h) ⇒ Object

Raises:



190
191
192
# File 'lib/secure_conf/openssh.rb', line 190

def to_openssl(h)
  raise Error, "not implemented error: #{self.class.name}.to_openssl(h)"
end

#to_openssl_der(h) ⇒ Object

Raises:



198
199
200
# File 'lib/secure_conf/openssh.rb', line 198

def to_openssl_der(h)
  raise Error, "not implemented error: #{self.class.name}.to_openssl_der(h)"
end

#to_openssl_pem(h) ⇒ Object

Raises:



194
195
196
# File 'lib/secure_conf/openssh.rb', line 194

def to_openssl_pem(h)
  raise Error, "not implemented error: #{self.class.name}.to_openssl_pem(h)"
end