Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsLegalKeySize()

static bool System.Security.Cryptography.DES.IsLegalKeySize ( byte[] rgbKey)
inlinestaticprivateinherited

Definition at line 107 of file DES.cs.

108 {
109 if (rgbKey != null && rgbKey.Length == 8)
110 {
111 return true;
112 }
113 return false;
114 }

Referenced by System.Security.Cryptography.DES.IsSemiWeakKey(), and System.Security.Cryptography.DES.IsWeakKey().