You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-15 22:56:30 +09:00
Net encryption generalized to support more algorithms
This commit is contained in:
14
Lidgren.Network/Encryption/INetEncryption.cs
Normal file
14
Lidgren.Network/Encryption/INetEncryption.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Lidgren.Network
|
||||
{
|
||||
public interface INetEncryption
|
||||
{
|
||||
bool Encrypt(NetOutgoingMessage msg);
|
||||
bool Decrypt(NetIncomingMessage msg);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user