3 writes to DQ
mscorlib (2)
system\security\cryptography\rsa.cs (1)
300if (dqString != null) rsaParams.DQ = Convert.FromBase64String(Utils.DiscardWhiteSpaces(dqString));
system\security\cryptography\rsacryptoserviceprovider.cs (1)
462rsaParams.DQ = rsaCspObject.DQ;
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
285rsaParams.DQ = new byte[pBcryptBlob->cbPrime2];
5 references to DQ
mscorlib (2)
system\security\cryptography\rsa.cs (1)
343sb.Append("<DQ>"+Convert.ToBase64String(rsaParams.DQ)+"</DQ>");
system\security\cryptography\rsacryptoserviceprovider.cs (1)
475rsaCspObject.DQ = rsaParams.DQ;
System.Core (3)
System\Security\Cryptography\RsaCng.cs (2)
286Buffer.BlockCopy(rsaBlob, offset, rsaParams.DQ, 0, rsaParams.DQ.Length);
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
145using (PinAndClear.Track(parameters.DQ))