8 references to CERT_PUBLIC_KEY_INFO
System.Security (8)
system\security\cryptography\cryptoapi.cs (2)
1152internal CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo; 1485internal CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo; // CERT_PUBLIC_KEY_INFO
system\security\cryptography\pkcs\pkcsmisc.cs (5)
196internal PublicKeyInfo (CAPI.CERT_PUBLIC_KEY_INFO keyInfo) { 246internal SubjectIdentifierOrKey (CAPI.CERT_PUBLIC_KEY_INFO publicKeyInfo) { 320internal AlgorithmIdentifier (CAPI.CERT_PUBLIC_KEY_INFO keyInfo) { 321SafeLocalAllocHandle pKeyInfo = CAPI.LocalAlloc(CAPI.LPTR, new IntPtr(Marshal.SizeOf(typeof(CAPI.CERT_PUBLIC_KEY_INFO)))); 328Marshal.DestroyStructure(pKeyInfo.DangerousGetHandle(), typeof(CAPI.CERT_PUBLIC_KEY_INFO));
system\security\cryptography\pkcs\signerinfo.cs (1)
355IntPtr pAlgorithm = new IntPtr((long) pSubjectPublicKeyInfo + (long) Marshal.OffsetOf(typeof(CAPI.CERT_PUBLIC_KEY_INFO), "Algorithm"));