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