5 writes to D
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
284
rsaParameters.
D
= br.ReadReversed(modulusLength);
Microsoft.DotNet.SignTool (1)
src\StrongName.cs (1)
837
rsaParameters.
D
= br.ReadReversed(modulusLength);
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
49
D
= key.PrivateExponent.ExportKeyParameter(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,
18 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 (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
281
if (rsaParameters.
D
== null ||
299
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 (5)
857
fixed (byte* dPin = rsaParameters.
D
)
942
fixed (byte* dPin = rsaParameters.
D
)
996
fixed (byte* dPin = ret.
D
)
1027
fixed (byte* dPin = ret.
D
)
1395
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)
691
using (PinAndClear.Track(rsaParameters.
D
!))