Exception: Net::SSH::Authentication::ED25519::OpenSSHPrivateKeyLoader::DecryptError
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- Net::SSH::Authentication::ED25519::OpenSSHPrivateKeyLoader::DecryptError
- Defined in:
- lib/net/ssh/authentication/ed25519.rb
Instance Method Summary collapse
- #encrypted_key? ⇒ Boolean
-
#initialize(message, encrypted_key: false) ⇒ DecryptError
constructor
A new instance of DecryptError.
Constructor Details
#initialize(message, encrypted_key: false) ⇒ DecryptError
Returns a new instance of DecryptError.
31 32 33 34 |
# File 'lib/net/ssh/authentication/ed25519.rb', line 31 def initialize(, encrypted_key: false) super() @encrypted_key = encrypted_key end |
Instance Method Details
#encrypted_key? ⇒ Boolean
36 37 38 |
# File 'lib/net/ssh/authentication/ed25519.rb', line 36 def encrypted_key? return @encrypted_key end |