class Net::SSH::Transport::AES128_GCM

# Implements the aes128-gcm@openssh cipher

def self.key_length


K_LEN AES key length 16 octets
--- RFC 5647 ---
def self.key_length
  16
end

def algo_name

def algo_name
  'aes-128-gcm'
end

def implicit_mac

def implicit_mac
  ImplicitHMac.new
end

def name

def name
  'aes128-gcm@openssh.com'
end