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

◆ EqualBytes()

static bool System.Security.Cryptography.TripleDES.EqualBytes ( byte[] rgbKey,
int start1,
int start2,
int count )
inlinestaticprivateinherited

Definition at line 92 of file TripleDES.cs.

93 {
94 for (int i = 0; i < count; i++)
95 {
96 if (rgbKey[start1 + i] != rgbKey[start2 + i])
97 {
98 return false;
99 }
100 }
101 return true;
102 }

References System.count.

Referenced by System.Security.Cryptography.TripleDES.IsWeakKey().