5 writes to D
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
284
rsaParameters.
D
= br.ReadReversed(modulusLength);
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
206
rsaParameters.
D
= br.ReadReversed(modulusLength);
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (1)
56
D
= new byte[n.Length],
System\Security\Cryptography\CapiHelper.Shared.cs (1)
188
rsaParameters.
D
= br.ReadReversed(modulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
49
D
= d,
19 references to D
Microsoft.CodeAnalysis.UnitTests (2)
CryptoBlobParserTests.cs (2)
62
AssertEx.Equal(expectedD, privKey.
D
);
105
AssertEx.Equal(expectedD, privKey.
D
);
System.Security.Cryptography (17)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (4)
66
using (PinAndClear.Track(parameters.
D
))
83
key.PrivateExponent.ToUnsignedIntegerBytes(parameters.
D
);
143
if (rsaParameters.
D
== null ||
161
writer.WriteKeyParameterInteger(rsaParameters.
D
);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
453
if (parameters.
D
!= null)
676
if (parameters.
D
== null)
System\Security\Cryptography\CapiHelper.Shared.cs (3)
99
if (rsaParameters.
D
== null || rsaParameters.
D
.Length != modulusLength)
135
bw.WriteReversed(rsaParameters.
D
!);
System\Security\Cryptography\RSA.cs (4)
857
fixed (byte* dPin = rsaParameters.
D
)
975
fixed (byte* dPin = ret.
D
)
1006
fixed (byte* dPin = ret.
D
)
1374
CryptographicOperations.ZeroMemory(rsaParameters.
D
);
System\Security\Cryptography\RSA.Xml.cs (3)
43
byte[]? d = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.
D
), n.Length);
123
XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.
D
), keyParameters.
D
, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
773
using (PinAndClear.Track(rsaParameters.
D
!))