7 writes to InverseQ
Microsoft.CodeAnalysis (1)
StrongName\CryptoBlobParser.cs (1)
283rsaParameters.InverseQ = br.ReadReversed(halfModulusLength);
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
205rsaParameters.InverseQ = br.ReadReversed(halfModulusLength);
Mono.Cecil (1)
Mono.Security.Cryptography\CryptoConvert.cs (1)
126 rsap.InverseQ = new byte [byteHalfLen];
System.Security.Cryptography (4)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (1)
47InverseQ = new byte[halfModulusLength],
System\Security\Cryptography\CapiHelper.Shared.cs (1)
187rsaParameters.InverseQ = br.ReadReversed(halfModulusLength);
System\Security\Cryptography\CngHelpers.cs (1)
271rsaParams.InverseQ = Interop.BCrypt.Consume(rsaBlob, ref offset, pBcryptBlob->cbPrime1);
System\Security\Cryptography\RSA.Xml.cs (1)
54InverseQ = qInv,
20 references to InverseQ
Mono.Cecil (2)
Mono.Security.Cryptography\CryptoConvert.cs (2)
127 Buffer.BlockCopy (blob, pos, rsap.InverseQ, 0, byteHalfLen); 128 Array.Reverse (rsap.InverseQ);
System.Security.Cryptography (18)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (4)
57using (PinAndClear.Track(parameters.InverseQ)) 74key.Coefficient.ToUnsignedIntegerBytes(parameters.InverseQ); 123rsaParameters.InverseQ == null) 141writer.WriteKeyParameterInteger(rsaParameters.InverseQ);
System\Security\Cryptography\CapiHelper.Shared.cs (3)
96if (rsaParameters.InverseQ == null || rsaParameters.InverseQ.Length != halfModulusLength) 134bw.WriteReversed(rsaParameters.InverseQ!);
System\Security\Cryptography\CngHelpers.cs (3)
126parameters.InverseQ != null) 139parameters.InverseQ == null) 158parameters.InverseQ.Length != halfModulusLength)
System\Security\Cryptography\RSA.cs (4)
862fixed (byte* qInvPin = rsaParameters.InverseQ) 960fixed (byte* qInvPin = ret.InverseQ) 991fixed (byte* qInvPin = ret.InverseQ) 1359CryptographicOperations.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\CertificatePal.Windows.PrivateKey.cs (1)
241using (PinAndClear.Track(privateParameters.InverseQ!))