7 writes to Q
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
280rsaParameters.Q = br.ReadReversed(halfModulusLength);
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
202rsaParameters.Q = br.ReadReversed(halfModulusLength);
Mono.Cecil (1)
Mono.Security.Cryptography\CryptoConvert.cs (1)
108 rsap.Q = new byte [byteHalfLen];
System.Security.Cryptography (4)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (1)
44Q = new byte[halfModulusLength],
System\Security\Cryptography\CapiHelper.Shared.cs (1)
184rsaParameters.Q = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\CngHelpers.cs (1)
268rsaParams.Q = Interop.BCrypt.Consume(rsaBlob, ref offset, pBcryptBlob->cbPrime2);
System\Security\Cryptography\RSA.Xml.cs (1)
51Q = q,
23 references to Q
Mono.Cecil (2)
Mono.Security.Cryptography\CryptoConvert.cs (2)
109 Buffer.BlockCopy (blob, pos, rsap.Q, 0, byteHalfLen); 110 Array.Reverse (rsap.Q);
System.Security.Cryptography (21)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (4)
54using (PinAndClear.Track(parameters.Q)) 71key.Prime2.ToUnsignedIntegerBytes(parameters.Q); 120rsaParameters.Q == null || 138writer.WriteKeyParameterInteger(rsaParameters.Q);
System\Security\Cryptography\CapiHelper.Shared.cs (3)
87if (rsaParameters.Q == null || rsaParameters.Q.Length != halfModulusLength) 131bw.WriteReversed(rsaParameters.Q!);
System\Security\Cryptography\CngHelpers.cs (6)
124parameters.Q != null || 137parameters.Q == null || 155parameters.Q.Length != halfModulusLength || 182parameters.Q!.Length; 199pBcryptBlob->cbPrime2 = parameters.Q!.Length; 214Interop.BCrypt.Emit(rsaBlob, ref offset, parameters.Q!);
System\Security\Cryptography\RSA.cs (4)
859fixed (byte* qPin = rsaParameters.Q) 957fixed (byte* qPin = ret.Q) 988fixed (byte* qPin = ret.Q) 1356CryptographicOperations.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\CertificatePal.Windows.PrivateKey.cs (1)
238using (PinAndClear.Track(privateParameters.Q!))