mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 23:42:00 +02:00
8 lines
131 B
C#
8 lines
131 B
C#
namespace RemSox.Networking;
|
|
|
|
public interface IPacketCrypto
|
|
{
|
|
byte[] Encrypt(byte[] data);
|
|
|
|
byte[] Decrypt(byte[] data);
|
|
} |