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

◆ RSAPKCS1SignatureFormatter() [2/2]

System.Security.Cryptography.RSAPKCS1SignatureFormatter.RSAPKCS1SignatureFormatter ( AsymmetricAlgorithm key)
inline

Definition at line 17 of file RSAPKCS1SignatureFormatter.cs.

18 {
19 if (key == null)
20 {
21 throw new ArgumentNullException("key");
22 }
23 _rsaKey = (RSA)key;
24 }

References System.Security.Cryptography.RSAPKCS1SignatureFormatter._rsaKey, and System.key.