class Net::SSH::Transport::AES256_GCM

# Implements the aes256-gcm@openssh cipher

def self.key_length


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

def algo_name

def algo_name
  'aes-256-gcm'
end

def implicit_mac

def implicit_mac
  ImplicitHMac.new
end

def name

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