3 writes to DP
mscorlib (2)
system\security\cryptography\rsa.cs (1)
296if (dpString != null) rsaParams.DP = Convert.FromBase64String(Utils.DiscardWhiteSpaces(dpString));
system\security\cryptography\rsacryptoserviceprovider.cs (1)
461rsaParams.DP = rsaCspObject.DP;
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
280rsaParams.DP = new byte[pBcryptBlob->cbPrime1];
5 references to DP
mscorlib (2)
system\security\cryptography\rsa.cs (1)
342sb.Append("<DP>"+Convert.ToBase64String(rsaParams.DP)+"</DP>");
system\security\cryptography\rsacryptoserviceprovider.cs (1)
474rsaCspObject.DP = rsaParams.DP;
System.Core (3)
System\Security\Cryptography\RsaCng.cs (2)
281Buffer.BlockCopy(rsaBlob, offset, rsaParams.DP, 0, rsaParams.DP.Length);
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
144using (PinAndClear.Track(parameters.DP))