Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AesAEAD.cs
Go to the documentation of this file.
2
3internal static class AesAEAD
4{
5 public static void CheckKeySize(int keySizeInBytes)
6 {
7 if (keySizeInBytes != 16 && keySizeInBytes != 24 && keySizeInBytes != 32)
8 {
10 }
11 }
12}
static string Cryptography_InvalidKeySize
Definition SR.cs:92
Definition SR.cs:7
static void CheckKeySize(int keySizeInBytes)
Definition AesAEAD.cs:5