3 writes to DP
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
52DP = key.Exponent1.ExportKeyParameter(halfModulusLength),
System\Security\Cryptography\CapiHelper.Shared.cs (1)
185rsaParameters.DP = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
52DP = dp,
16 references to DP
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
284rsaParameters.DP == null || 302writer.WriteKeyParameterInteger(rsaParameters.DP);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
681parameters.DP != null || 692parameters.DP == null ||
System\Security\Cryptography\CapiHelper.Shared.cs (3)
90if (rsaParameters.DP == null || rsaParameters.DP.Length != halfModulusLength) 132bw.WriteReversed(rsaParameters.DP!);
System\Security\Cryptography\RSA.cs (5)
860fixed (byte* dpPin = rsaParameters.DP) 945fixed (byte* dpPin = rsaParameters.DP) 999fixed (byte* dpPin = ret.DP) 1030fixed (byte* dpPin = ret.DP) 1398CryptographicOperations.ZeroMemory(rsaParameters.DP);
System\Security\Cryptography\RSA.Xml.cs (3)
40byte[]? dp = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.DP), halfN); 120XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.DP), keyParameters.DP, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
693using (PinAndClear.Track(rsaParameters.DP!))