module Net::SSH::Transport::GCMCipher

def nonce=(iv_s)

def nonce=(iv_s)
  return if nonce[:fixed]
  nonce[:fixed]              = iv_s[0...4]
  nonce[:invocation_counter] = iv_s[4...12]
  apply_nonce
end