class Net::SSH::Authentication::ED25519::OpenSSHPrivateKeyLoader::DecryptError
Public Class Methods
Source
# File lib/net/ssh/authentication/ed25519.rb, line 31 def initialize(message, encrypted_key: false) super(message) @encrypted_key = encrypted_key end
Calls superclass method
Public Instance Methods
Source
# File lib/net/ssh/authentication/ed25519.rb, line 36 def encrypted_key? return @encrypted_key end