using System; using System.Collections.Generic; namespace Lidgren.Network { /// /// Interface for an encryption algorithm /// public abstract class NetEncryption { /// /// NetPeer /// protected NetPeer m_peer; /// /// Constructor /// public NetEncryption(NetPeer peer) { if (peer == null) throw new NetException("Peer must not be null"); m_peer = peer; } /// /// Encrypt an outgoing message in place /// public abstract bool Encrypt(NetOutgoingMessage msg); /// /// Decrypt an incoming message in place /// public abstract bool Decrypt(NetIncomingMessage msg); } }