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

◆ PbeParameters()

System.Security.Cryptography.PbeParameters.PbeParameters ( PbeEncryptionAlgorithm encryptionAlgorithm,
HashAlgorithmName hashAlgorithm,
int iterationCount )
inline

Definition at line 11 of file PbeParameters.cs.

12 {
13 if (iterationCount < 1)
14 {
15 throw new ArgumentOutOfRangeException("iterationCount", iterationCount, System.SR.ArgumentOutOfRange_NeedPosNum);
16 }
17 EncryptionAlgorithm = encryptionAlgorithm;
18 HashAlgorithm = hashAlgorithm;
19 IterationCount = iterationCount;
20 }
static string ArgumentOutOfRange_NeedPosNum
Definition SR.cs:20
Definition SR.cs:7

References System.SR.ArgumentOutOfRange_NeedPosNum, System.Security.Cryptography.PbeParameters.EncryptionAlgorithm, and System.Security.Cryptography.PbeParameters.IterationCount.