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

◆ ClearPrivateParameters()

static void System.Security.Cryptography.RSA.ClearPrivateParameters ( in RSAParameters rsaParameters)
inlinestaticprivateinherited

Definition at line 662 of file RSA.cs.

663 {
664 CryptographicOperations.ZeroMemory(rsaParameters.D);
665 CryptographicOperations.ZeroMemory(rsaParameters.P);
666 CryptographicOperations.ZeroMemory(rsaParameters.Q);
667 CryptographicOperations.ZeroMemory(rsaParameters.DP);
668 CryptographicOperations.ZeroMemory(rsaParameters.DQ);
669 CryptographicOperations.ZeroMemory(rsaParameters.InverseQ);
670 }

References System.Security.Cryptography.CryptographicOperations.ZeroMemory().

Referenced by System.Security.Cryptography.RSA.ImportEncryptedPkcs8PrivateKey(), System.Security.Cryptography.RSA.ImportEncryptedPkcs8PrivateKey(), System.Security.Cryptography.RSA.ImportRSAPrivateKey(), and System.Security.Cryptography.RSA.WritePkcs1PrivateKey().