class Net::SSH::Transport::AES128_GCM
Implements the aes128-gcm@openssh cipher
Public Class Methods
key_length()
click to toggle source
— RFC 5647 — K_LEN AES key length 16 octets
# File lib/net/ssh/transport/aes128_gcm.rb, line 36 def self.key_length 16 end
Public Instance Methods
algo_name()
click to toggle source
# File lib/net/ssh/transport/aes128_gcm.rb, line 24 def algo_name 'aes-128-gcm' end
implicit_mac()
click to toggle source
# File lib/net/ssh/transport/aes128_gcm.rb, line 20 def implicit_mac ImplicitHMac.new end
name()
click to toggle source
# File lib/net/ssh/transport/aes128_gcm.rb, line 28 def name 'aes128-gcm@openssh.com' end