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