5 writes to Q
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
280rsaParameters.Q = br.ReadReversed(halfModulusLength);
Microsoft.DotNet.SignTool (1)
src\StrongName.cs (1)
833rsaParameters.Q = br.ReadReversed(halfModulusLength);
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,
18 references to Q
Microsoft.CodeAnalysis.UnitTests (2)
CryptoBlobParserTests.cs (2)
46AssertEx.Equal(expectedQ, privKey.Q); 89AssertEx.Equal(expectedQ, privKey.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)
680parameters.Q != null || 691parameters.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)
693using (PinAndClear.Track(rsaParameters.Q!))