using System;
using System.Collections.Generic;
namespace Lidgren.Network
{
///
/// Interface for an encryption algorithm
///
public interface INetEncryption
{
///
/// Encrypt an outgoing message in place
///
bool Encrypt(NetOutgoingMessage msg);
///
/// Decrypt an incoming message in place
///
bool Decrypt(NetIncomingMessage msg);
}
}