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

◆ CngAlgorithm()

System.Security.Cryptography.CngAlgorithm.CngAlgorithm ( string algorithm)
inline

Definition at line 67 of file CngAlgorithm.cs.

68 {
69 if (algorithm == null)
70 {
71 throw new ArgumentNullException("algorithm");
72 }
73 if (algorithm.Length == 0)
74 {
76 }
77 _algorithm = algorithm;
78 }
static string Cryptography_InvalidAlgorithmName
Definition SR.cs:52
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7

References System.Security.Cryptography.CngAlgorithm._algorithm, System.SR.Cryptography_InvalidAlgorithmName, and System.SR.Format().