5 writes to pszObjId
System.Security (5)
system\security\cryptography\pkcs\envelopedpkcs7.cs (1)
414encodeInfo.ContentEncryptionAlgorithm.pszObjId = this.ContentEncryptionAlgorithm.Oid.Value;
system\security\cryptography\pkcs\pkcsutils.cs (4)
719cmsSignerEncodeInfo.HashAlgorithm.pszObjId = signer.DigestAlgorithm.Value; 726cmsSignerEncodeInfo.HashEncryptionAlgorithm.pszObjId = CAPI.szOID_X957_sha1DSA; 736cmsSignerEncodeInfo.HashEncryptionAlgorithm.pszObjId = CAPI.szOID_PKIX_NO_SIGNATURE; 1078SignatureAlgorithm.pszObjId = CAPI.szOID_OIWSEC_sha1RSASign;
8 references to pszObjId
System.Security (8)
system\security\cryptography\pkcs\envelopedpkcs7.cs (2)
709byte[] objId = Encoding.ASCII.GetBytes(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId); 873objId = Encoding.ASCII.GetBytes(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId);
system\security\cryptography\pkcs\pkcsmisc.cs (3)
330Reset(Oid.FromOidValue(keyInfo.Algorithm.pszObjId, OidGroup.PublicKeyAlgorithm), keyLength, parameters); 340uint algId = X509Utils.OidToAlgId(algorithmIdentifier.pszObjId); 428Reset(Oid.FromOidValue(algorithmIdentifier.pszObjId, OidGroup.All), keyLength, parameters);
system\security\cryptography\pkcs\pkcsutils.cs (1)
61uint algId = X509Utils.OidToAlgId(certInfo.SubjectPublicKeyInfo.Algorithm.pszObjId);
system\security\cryptography\pkcs\signerinfo.cs (2)
114return new Oid(m_cmsgSignerInfo.HashAlgorithm.pszObjId); 266return new Oid(m_cmsgSignerInfo.HashEncryptionAlgorithm.pszObjId);