Class: Net::SSH::Authentication::ED25519::PubKey

Inherits:
Object
  • Object
show all
Includes:
PubKeyFingerprint
Defined in:
lib/net/ssh/authentication/ed25519.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from PubKeyFingerprint

#fingerprint, fingerprint

Constructor Details

#initialize(data) ⇒ PubKey

Returns a new instance of PubKey.



111
112
113
# File 'lib/net/ssh/authentication/ed25519.rb', line 111

def initialize(data)
  @verify_key = ::Ed25519::VerifyKey.new(data)
end

Instance Attribute Details

#verify_keyObject (readonly)

Returns the value of attribute verify_key.



109
110
111
# File 'lib/net/ssh/authentication/ed25519.rb', line 109

def verify_key
  @verify_key
end

Class Method Details

.read_keyblob(buffer) ⇒ Object



115
116
117
# File 'lib/net/ssh/authentication/ed25519.rb', line 115

def self.read_keyblob(buffer)
  PubKey.new(buffer.read_string)
end

Instance Method Details

#ssh_do_verify(sig, data, options = {}) ⇒ Object



131
132
133
# File 'lib/net/ssh/authentication/ed25519.rb', line 131

def ssh_do_verify(sig, data, options = {})
  @verify_key.verify(sig, data)
end

#ssh_signature_typeObject



127
128
129
# File 'lib/net/ssh/authentication/ed25519.rb', line 127

def ssh_signature_type
  ssh_type
end

#ssh_typeObject



123
124
125
# File 'lib/net/ssh/authentication/ed25519.rb', line 123

def ssh_type
  "ssh-ed25519"
end

#to_blobObject



119
120
121
# File 'lib/net/ssh/authentication/ed25519.rb', line 119

def to_blob
  Net::SSH::Buffer.from(:mstring, "ssh-ed25519".dup, :string, @verify_key.to_bytes).to_s
end

#to_pemObject



135
136
137
138
# File 'lib/net/ssh/authentication/ed25519.rb', line 135

def to_pem
  # TODO this is not pem
  ssh_type + Base64.encode64(@verify_key.to_bytes)
end