3 writes to D
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
49D = key.PrivateExponent.ExportKeyParameter(n.Length),
System\Security\Cryptography\CapiHelper.Shared.cs (1)
188rsaParameters.D = br.ReadReversed(modulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
49D = d,
16 references to D
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
281if (rsaParameters.D == null || 299writer.WriteKeyParameterInteger(rsaParameters.D);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
454if (parameters.D != null) 678if (parameters.D == null)
System\Security\Cryptography\CapiHelper.Shared.cs (3)
99if (rsaParameters.D == null || rsaParameters.D.Length != modulusLength) 135bw.WriteReversed(rsaParameters.D!);
System\Security\Cryptography\RSA.cs (5)
857fixed (byte* dPin = rsaParameters.D) 942fixed (byte* dPin = rsaParameters.D) 996fixed (byte* dPin = ret.D) 1027fixed (byte* dPin = ret.D) 1395CryptographicOperations.ZeroMemory(rsaParameters.D);
System\Security\Cryptography\RSA.Xml.cs (3)
43byte[]? d = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.D), n.Length); 123XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.D), keyParameters.D, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
690using (PinAndClear.Track(rsaParameters.D!))