mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-11-23 23:31:02 +01:00
21 lines
404 B
C#
21 lines
404 B
C#
// ReSharper disable CheckNamespace
|
|
// ReSharper disable InconsistentNaming
|
|
using MonoMod;
|
|
|
|
namespace Net;
|
|
|
|
[MonoModPatch("global::Net.CipherAES")]
|
|
public class patch_CipherAES
|
|
{
|
|
[MonoModReplace]
|
|
public static byte[] Encrypt(byte[] data)
|
|
{
|
|
return data;
|
|
}
|
|
|
|
[MonoModReplace]
|
|
public static byte[] Decrypt(byte[] data)
|
|
{
|
|
return data;
|
|
}
|
|
} |