3 writes to Q
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
51Q = key.Prime2.ExportKeyParameter(halfModulusLength),
System\Security\Cryptography\CapiHelper.Shared.cs (1)
184rsaParameters.Q = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\RSA.Xml.cs (1)
51Q = q,
16 references to Q
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
283rsaParameters.Q == null || 301writer.WriteKeyParameterInteger(rsaParameters.Q);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
682parameters.Q != null || 693parameters.Q == null ||
System\Security\Cryptography\CapiHelper.Shared.cs (3)
87if (rsaParameters.Q == null || rsaParameters.Q.Length != halfModulusLength) 131bw.WriteReversed(rsaParameters.Q!);
System\Security\Cryptography\RSA.cs (5)
859fixed (byte* qPin = rsaParameters.Q) 944fixed (byte* qPin = rsaParameters.Q) 998fixed (byte* qPin = ret.Q) 1029fixed (byte* qPin = ret.Q) 1397CryptographicOperations.ZeroMemory(rsaParameters.Q);
System\Security\Cryptography\RSA.Xml.cs (3)
39byte[]? q = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(RSAParameters.Q), halfN); 119XmlKeyHelper.WriteCryptoBinary(nameof(RSAParameters.Q), keyParameters.Q, builder);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
692using (PinAndClear.Track(rsaParameters.Q!))