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