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

◆ HashAlgorithm

CngAlgorithm System.Security.Cryptography.ECDiffieHellmanCng.HashAlgorithm
getset

Definition at line 27 of file ECDiffieHellmanCng.cs.

28 {
29 get
30 {
31 return _hashAlgorithm;
32 }
33 set
34 {
35 if (_hashAlgorithm == null)
36 {
37 throw new ArgumentNullException("value");
38 }
40 }
41 }