3 writes to InverseQ
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
54InverseQ = key.Coefficient.ExportKeyParameter(halfModulusLength),
System\Security\Cryptography\CapiHelper.Shared.cs (1)
187rsaParameters.InverseQ = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
54InverseQ = qInv,
16 references to InverseQ
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
286rsaParameters.InverseQ == null) 304writer.WriteKeyParameterInteger(rsaParameters.InverseQ);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
684parameters.InverseQ != null) 695parameters.InverseQ == null)
System\Security\Cryptography\CapiHelper.Shared.cs (3)
96if (rsaParameters.InverseQ == null || rsaParameters.InverseQ.Length != halfModulusLength) 134bw.WriteReversed(rsaParameters.InverseQ!);
System\Security\Cryptography\RSA.cs (5)
862fixed (byte* qInvPin = rsaParameters.InverseQ) 947fixed (byte* qInvPin = rsaParameters.InverseQ) 1001fixed (byte* qInvPin = ret.InverseQ) 1032fixed (byte* qInvPin = ret.InverseQ) 1400CryptographicOperations.ZeroMemory(rsaParameters.InverseQ);
System\Security\Cryptography\RSA.Xml.cs (3)
42byte[]? qInv = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.InverseQ), halfN); 122XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.InverseQ), keyParameters.InverseQ, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
695using (PinAndClear.Track(rsaParameters.InverseQ!))