class Net::SSH::Authentication::ED25519::PubKey
Attributes
Public Class Methods
Source
# File lib/net/ssh/authentication/ed25519.rb, line 30 def initialize(data) @verify_key = ::Ed25519::VerifyKey.new(data) end
Source
# File lib/net/ssh/authentication/ed25519.rb, line 34 def self.read_keyblob(buffer) PubKey.new(buffer.read_string) end
Public Instance Methods
Source
# File lib/net/ssh/authentication/ed25519.rb, line 50 def ssh_do_verify(sig,data) @verify_key.verify(sig,data) end
Source
# File lib/net/ssh/authentication/ed25519.rb, line 46 def ssh_signature_type ssh_type end
Source
# File lib/net/ssh/authentication/ed25519.rb, line 42 def ssh_type "ssh-ed25519" end
Source
# File lib/net/ssh/authentication/ed25519.rb, line 38 def to_blob Net::SSH::Buffer.from(:mstring,"ssh-ed25519",:string,@verify_key.to_bytes).to_s end
Source
# File lib/net/ssh/authentication/ed25519.rb, line 54 def to_pem # TODO this is not pem ssh_type + Base64.encode64(@verify_key.to_bytes) end