10 references to Algorithm
System.Security (10)
system\security\cryptography\pkcs\envelopedpkcs7.cs (6)
709byte[] objId = Encoding.ASCII.GetBytes(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId); 722Marshal.WriteInt32(pcbData, (int) certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.cbData); 726Marshal.WriteIntPtr(ppbData, certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.pbData); 873objId = Encoding.ASCII.GetBytes(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId); 885Marshal.WriteInt32(pcbData, (int) certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.cbData); 889Marshal.WriteIntPtr(ppbData, certInfo.SubjectPublicKeyInfo.Algorithm.Parameters.pbData);
system\security\cryptography\pkcs\pkcsmisc.cs (3)
324byte[] parameters = new byte[keyInfo.Algorithm.Parameters.cbData]; 326Marshal.Copy(keyInfo.Algorithm.Parameters.pbData, parameters, 0, parameters.Length); 330Reset(Oid.FromOidValue(keyInfo.Algorithm.pszObjId, OidGroup.PublicKeyAlgorithm), keyLength, parameters);
system\security\cryptography\pkcs\pkcsutils.cs (1)
61uint algId = X509Utils.OidToAlgId(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId);