Files
RemSox/RemSox.Shared/Networking/IPacketCrypto.cs
T

9 lines
139 B
C#

namespace RemSox.Shared.Networking;
public interface IPacketCrypto
{
byte[] Encrypt(byte[] data);
byte[] Decrypt(byte[] data);
}