3 writes to Q
mscorlib (2)
system\security\cryptography\rsa.cs (1)
292if (qString != null) rsaParams.Q = Convert.FromBase64String(Utils.DiscardWhiteSpaces(qString));
system\security\cryptography\rsacryptoserviceprovider.cs (1)
460rsaParams.Q = rsaCspObject.Q;
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
275rsaParams.Q = new byte[pBcryptBlob->cbPrime2];
11 references to Q
mscorlib (2)
system\security\cryptography\rsa.cs (1)
341sb.Append("<Q>"+Convert.ToBase64String(rsaParams.Q)+"</Q>");
system\security\cryptography\rsacryptoserviceprovider.cs (1)
473rsaCspObject.Q = rsaParams.Q;
System.Core (9)
System\Security\Cryptography\RsaCng.cs (8)
276Buffer.BlockCopy(rsaBlob, offset, rsaParams.Q, 0, rsaParams.Q.Length); 327bool publicOnly = parameters.P == null || parameters.Q == null; 345parameters.Q.Length; 366pBcryptBlob->cbPrime2 = parameters.Q.Length; 386Buffer.BlockCopy(parameters.Q, 0, rsaBlob, offset, parameters.Q.Length); 387offset += parameters.Q.Length;
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
143using (PinAndClear.Track(parameters.Q))