5 writes to D
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
284rsaParameters.D = br.ReadReversed(modulusLength);
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
206rsaParameters.D = br.ReadReversed(modulusLength);
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (1)
56D = new byte[n.Length],
System\Security\Cryptography\CapiHelper.Shared.cs (1)
188rsaParameters.D = br.ReadReversed(modulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
49D = d,
19 references to D
Microsoft.CodeAnalysis.UnitTests (2)
CryptoBlobParserTests.cs (2)
62AssertEx.Equal(expectedD, privKey.D); 105AssertEx.Equal(expectedD, privKey.D);
System.Security.Cryptography (17)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (4)
66using (PinAndClear.Track(parameters.D)) 83key.PrivateExponent.ToUnsignedIntegerBytes(parameters.D); 143if (rsaParameters.D == null || 161writer.WriteKeyParameterInteger(rsaParameters.D);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
453if (parameters.D != null) 676if (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 (4)
857fixed (byte* dPin = rsaParameters.D) 975fixed (byte* dPin = ret.D) 1006fixed (byte* dPin = ret.D) 1374CryptographicOperations.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)
773using (PinAndClear.Track(rsaParameters.D!))