15 references to Parameters
System.Security (15)
system\security\cryptography\pkcs\envelopedpkcs7.cs (4)
722Marshal.WriteInt32(pcbData, (int) certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.cbData); 726Marshal.WriteIntPtr(ppbData, certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.pbData); 885Marshal.WriteInt32(pcbData, (int) certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.cbData); 889Marshal.WriteIntPtr(ppbData, certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.pbData);
system\security\cryptography\pkcs\pkcsmisc.cs (11)
324byte[] parameters = new byte[keyInfo.Algorithm.Parameters.cbData]; 326Marshal.Copy(keyInfo.Algorithm.Parameters.pbData, parameters, 0, parameters.Length); 343if (algorithmIdentifier.Parameters.cbData > 0) { 345algorithmIdentifier.Parameters.pbData, 346algorithmIdentifier.Parameters.cbData, 373if (algorithmIdentifier.Parameters.cbData > 0) { 375algorithmIdentifier.Parameters.pbData, 376algorithmIdentifier.Parameters.cbData, 422if (algorithmIdentifier.Parameters.cbData > 0) { 423parameters = new byte[algorithmIdentifier.Parameters.cbData]; 424Marshal.Copy(algorithmIdentifier.Parameters.pbData, parameters, 0, parameters.Length);