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

◆ CngAlgorithmGroup()

System.Security.Cryptography.CngAlgorithmGroup.CngAlgorithmGroup ( string algorithmGroup)
inline

Definition at line 31 of file CngAlgorithmGroup.cs.

32 {
33 if (algorithmGroup == null)
34 {
35 throw new ArgumentNullException("algorithmGroup");
36 }
37 if (algorithmGroup.Length == 0)
38 {
39 throw new ArgumentException(System.SR.Format(System.SR.Cryptography_InvalidAlgorithmGroup, algorithmGroup), "algorithmGroup");
40 }
41 _algorithmGroup = algorithmGroup;
42 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Cryptography_InvalidAlgorithmGroup
Definition SR.cs:50
Definition SR.cs:7

References System.Security.Cryptography.CngAlgorithmGroup._algorithmGroup, System.SR.Cryptography_InvalidAlgorithmGroup, and System.SR.Format().