Module: SecureConf::OpenSSH::Keytype::Base
- Included in:
- RSA
- Defined in:
- lib/secure_conf/openssh.rb
Instance Method Summary collapse
- #parse_der_private_key_contents(h, bio) ⇒ Object
- #parse_der_public_key_contents(h, bio) ⇒ Object
- #support?(keytype) ⇒ Boolean
- #to_openssl(h) ⇒ Object
- #to_openssl_der(h) ⇒ Object
- #to_openssl_pem(h) ⇒ Object
Instance Method Details
#parse_der_private_key_contents(h, bio) ⇒ Object
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
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
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
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
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
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 |