# File lib/net/ssh/transport/state.rb, line 78
    def update_cipher(data)
      result = cipher.update(data)
      update_next_iv(role == :client ? result : data)
      return result
    end