3 writes to P
mscorlib (2)
system\security\cryptography\rsa.cs (1)
288if (pString != null) rsaParams.P = Convert.FromBase64String(Utils.DiscardWhiteSpaces(pString));
system\security\cryptography\rsacryptoserviceprovider.cs (1)
459rsaParams.P = rsaCspObject.P;
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
270rsaParams.P = new byte[pBcryptBlob->cbPrime1];
12 references to P
mscorlib (3)
system\security\cryptography\rsa.cs (1)
340sb.Append("<P>"+Convert.ToBase64String(rsaParams.P)+"</P>");
system\security\cryptography\rsacryptoserviceprovider.cs (2)
472rsaCspObject.P = rsaParams.P; 503return (rsaParams.P == null);
System.Core (9)
System\Security\Cryptography\RsaCng.cs (8)
271Buffer.BlockCopy(rsaBlob, offset, rsaParams.P, 0, rsaParams.P.Length); 327bool publicOnly = parameters.P == null || parameters.Q == null; 344blobSize += parameters.P.Length + 365pBcryptBlob->cbPrime1 = parameters.P.Length; 382Buffer.BlockCopy(parameters.P, 0, rsaBlob, offset, parameters.P.Length); 383offset += parameters.P.Length;
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
142using (PinAndClear.Track(parameters.P))