3 writes to DQ
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
53DQ = key.Exponent2.ExportKeyParameter(halfModulusLength),
System\Security\Cryptography\CapiHelper.Shared.cs (1)
186rsaParameters.DQ = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
53DQ = dq,
16 references to DQ
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
285rsaParameters.DQ == null || 303writer.WriteKeyParameterInteger(rsaParameters.DQ);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
683parameters.DQ != null || 694parameters.DQ == null ||
System\Security\Cryptography\CapiHelper.Shared.cs (3)
93if (rsaParameters.DQ == null || rsaParameters.DQ.Length != halfModulusLength) 133bw.WriteReversed(rsaParameters.DQ!);
System\Security\Cryptography\RSA.cs (5)
861fixed (byte* dqPin = rsaParameters.DQ) 946fixed (byte* dqPin = rsaParameters.DQ) 1000fixed (byte* dqPin = ret.DQ) 1031fixed (byte* dqPin = ret.DQ) 1399CryptographicOperations.ZeroMemory(rsaParameters.DQ);
System\Security\Cryptography\RSA.Xml.cs (3)
41byte[]? dq = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.DQ), halfN); 121XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.DQ), keyParameters.DQ, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
694using (PinAndClear.Track(rsaParameters.DQ!))