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

◆ AppendHashData() [1/3]

void Internal.Cryptography.HashProvider.AppendHashData ( byte[] data,
int offset,
int count )
inlineinherited

Definition at line 9 of file HashProvider.cs.

10 {
11 if (data == null)
12 {
14 }
15 if (offset < 0)
16 {
18 }
19 if (count < 0)
20 {
22 }
23 if (data.Length - offset < count)
24 {
26 }
28 }
void AppendHashData(byte[] data, int offset, int count)
static string ArgumentNull_Buffer
Definition SR.cs:22
static string Argument_InvalidOffLen
Definition SR.cs:22
static string ArgumentOutOfRange_NeedNonNegNum
Definition SR.cs:32
Definition SR.cs:7

References Internal.Cryptography.HashProvider.AppendHashData(), System.SR.Argument_InvalidOffLen, System.SR.ArgumentNull_Buffer, System.SR.ArgumentOutOfRange_NeedNonNegNum, System.count, and System.offset.

Referenced by System.Security.Cryptography.IncrementalHash.AppendData(), Internal.Cryptography.HashProvider.AppendHashData(), Internal.Cryptography.HMACCommon.AppendHashData(), Internal.Cryptography.HMACCommon.AppendHashData(), Internal.Cryptography.HMACCommon.ChangeKeyImpl(), System.Security.Cryptography.MD5.Implementation.HashCore(), System.Security.Cryptography.SHA1.Implementation.HashCore(), System.Security.Cryptography.SHA1Managed.HashCore(), System.Security.Cryptography.SHA256.Implementation.HashCore(), System.Security.Cryptography.SHA256Managed.HashCore(), System.Security.Cryptography.SHA384.Implementation.HashCore(), System.Security.Cryptography.SHA384Managed.HashCore(), System.Security.Cryptography.SHA512.Implementation.HashCore(), System.Security.Cryptography.SHA512Managed.HashCore(), System.Security.Cryptography.MD5.Implementation.HashCore(), System.Security.Cryptography.SHA1.Implementation.HashCore(), System.Security.Cryptography.SHA1Managed.HashCore(), System.Security.Cryptography.SHA256.Implementation.HashCore(), System.Security.Cryptography.SHA256Managed.HashCore(), System.Security.Cryptography.SHA384.Implementation.HashCore(), System.Security.Cryptography.SHA384Managed.HashCore(), System.Security.Cryptography.SHA512.Implementation.HashCore(), and System.Security.Cryptography.SHA512Managed.HashCore().