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

◆ Equals() [2/3]

bool System.Security.Cryptography.RSAEncryptionPadding.Equals ( [NotNullWhen(true)] RSAEncryptionPadding? other)
inline

Definition at line 67 of file RSAEncryptionPadding.cs.

68 {
69 if ((object)other != null && _mode == other._mode)
70 {
71 return _oaepHashAlgorithm == other._oaepHashAlgorithm;
72 }
73 return false;
74 }

References System.Security.Cryptography.RSAEncryptionPadding._mode, System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm, and System.other.