Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Cryptography / X509Certificates / x509utils.cs / 1305376 / x509utils.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // X509Utils.cs // namespace System.Security.Cryptography.X509Certificates { using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Diagnostics.Contracts; internal static class X509Constants { internal const uint CRYPT_EXPORTABLE = 0x00000001; internal const uint CRYPT_USER_PROTECTED = 0x00000002; internal const uint CRYPT_MACHINE_KEYSET = 0x00000020; internal const uint CRYPT_USER_KEYSET = 0x00001000; internal const uint CERT_QUERY_CONTENT_CERT = 1; internal const uint CERT_QUERY_CONTENT_CTL = 2; internal const uint CERT_QUERY_CONTENT_CRL = 3; internal const uint CERT_QUERY_CONTENT_SERIALIZED_STORE = 4; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CERT = 5; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CTL = 6; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CRL = 7; internal const uint CERT_QUERY_CONTENT_PKCS7_SIGNED = 8; internal const uint CERT_QUERY_CONTENT_PKCS7_UNSIGNED = 9; internal const uint CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED = 10; internal const uint CERT_QUERY_CONTENT_PKCS10 = 11; internal const uint CERT_QUERY_CONTENT_PFX = 12; internal const uint CERT_QUERY_CONTENT_CERT_PAIR = 13; internal const uint CERT_STORE_PROV_MEMORY = 2; internal const uint CERT_STORE_PROV_SYSTEM = 10; // cert store flags internal const uint CERT_STORE_NO_CRYPT_RELEASE_FLAG = 0x00000001; internal const uint CERT_STORE_SET_LOCALIZED_NAME_FLAG = 0x00000002; internal const uint CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004; internal const uint CERT_STORE_DELETE_FLAG = 0x00000010; internal const uint CERT_STORE_SHARE_STORE_FLAG = 0x00000040; internal const uint CERT_STORE_SHARE_CONTEXT_FLAG = 0x00000080; internal const uint CERT_STORE_MANIFOLD_FLAG = 0x00000100; internal const uint CERT_STORE_ENUM_ARCHIVED_FLAG = 0x00000200; internal const uint CERT_STORE_UPDATE_KEYID_FLAG = 0x00000400; internal const uint CERT_STORE_BACKUP_RESTORE_FLAG = 0x00000800; internal const uint CERT_STORE_READONLY_FLAG = 0x00008000; internal const uint CERT_STORE_OPEN_EXISTING_FLAG = 0x00004000; internal const uint CERT_STORE_CREATE_NEW_FLAG = 0x00002000; internal const uint CERT_STORE_MAXIMUM_ALLOWED_FLAG = 0x00001000; internal const uint CERT_NAME_EMAIL_TYPE = 1; internal const uint CERT_NAME_RDN_TYPE = 2; internal const uint CERT_NAME_SIMPLE_DISPLAY_TYPE = 4; internal const uint CERT_NAME_FRIENDLY_DISPLAY_TYPE = 5; internal const uint CERT_NAME_DNS_TYPE = 6; internal const uint CERT_NAME_URL_TYPE = 7; internal const uint CERT_NAME_UPN_TYPE = 8; } internal static class X509Utils { #if FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated internal static int OidToAlgId (string oid) { // Default Algorithm Id is CALG_SHA1 if (oid == null) return Constants.CALG_SHA1; string oidValue = CryptoConfig.MapNameToOID(oid); if (oidValue == null) oidValue = oid; // we were probably passed an OID value directly int algId = _GetAlgIdFromOid(oidValue); // CAPI does not have ALGID mappings for all of the hash algorithms, and in these cases it // returns either 0 or -1 to us. If it couldn't map the ALGID, we can see if we know what the // mapping is ourselves. if (algId == 0 || algId == -1) { if (String.Equals(oid, Constants.OID_OIWSEC_SHA256, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_256; } else if (String.Equals(oid, Constants.OID_OIWSEC_SHA384, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_384; } else if (String.Equals(oid, Constants.OID_OIWSEC_SHA512, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_512; } else { throw new CryptographicException(Environment.GetResourceString("Cryptography_InvalidOID")); } } return algId; } #endif // FEATURE_CRYPTO // this method maps a cert content type returned from CryptQueryObject // to a value in the managed X509ContentType enum internal static X509ContentType MapContentType (uint contentType) { switch (contentType) { case X509Constants.CERT_QUERY_CONTENT_CERT: return X509ContentType.Cert; #if !FEATURE_CORECLR case X509Constants.CERT_QUERY_CONTENT_SERIALIZED_STORE: return X509ContentType.SerializedStore; case X509Constants.CERT_QUERY_CONTENT_SERIALIZED_CERT: return X509ContentType.SerializedCert; case X509Constants.CERT_QUERY_CONTENT_PKCS7_SIGNED: case X509Constants.CERT_QUERY_CONTENT_PKCS7_UNSIGNED: return X509ContentType.Pkcs7; case X509Constants.CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED: return X509ContentType.Authenticode; #if !FEATURE_PAL case X509Constants.CERT_QUERY_CONTENT_PFX: return X509ContentType.Pkcs12; #endif // !FEATURE_PAL #endif // !FEATURE_CORECLR default: return X509ContentType.Unknown; } } // this method maps a X509KeyStorageFlags enum to a combination of crypto API flags internal static uint MapKeyStorageFlags (X509KeyStorageFlags keyStorageFlags) { if ((keyStorageFlags & (X509KeyStorageFlags)~0x1F) != 0) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidFlag"), "keyStorageFlags"); Contract.EndContractBlock(); uint dwFlags = 0; #if FEATURE_CORECLR if (keyStorageFlags != X509KeyStorageFlags.DefaultKeySet) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidFlag"), "keyStorageFlags", new NotSupportedException()); #else // FEATURE_CORECLR if ((keyStorageFlags & X509KeyStorageFlags.UserKeySet) == X509KeyStorageFlags.UserKeySet) dwFlags |= X509Constants.CRYPT_USER_KEYSET; else if ((keyStorageFlags & X509KeyStorageFlags.MachineKeySet) == X509KeyStorageFlags.MachineKeySet) dwFlags |= X509Constants.CRYPT_MACHINE_KEYSET; if ((keyStorageFlags & X509KeyStorageFlags.Exportable) == X509KeyStorageFlags.Exportable) dwFlags |= X509Constants.CRYPT_EXPORTABLE; if ((keyStorageFlags & X509KeyStorageFlags.UserProtected) == X509KeyStorageFlags.UserProtected) dwFlags |= X509Constants.CRYPT_USER_PROTECTED; #endif // FEATURE_CORECLR else return dwFlags; } #if !FEATURE_CORECLR // this method creates a memory store from a certificate [System.Security.SecurityCritical] // auto-generated internal static SafeCertStoreHandle ExportCertToMemoryStore (X509Certificate certificate) { SafeCertStoreHandle safeCertStoreHandle = SafeCertStoreHandle.InvalidHandle; X509Utils._OpenX509Store(X509Constants.CERT_STORE_PROV_MEMORY, X509Constants.CERT_STORE_ENUM_ARCHIVED_FLAG | X509Constants.CERT_STORE_CREATE_NEW_FLAG, null, ref safeCertStoreHandle); X509Utils._AddCertificateToStore(safeCertStoreHandle, certificate.CertContext); return safeCertStoreHandle; } #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated internal static IntPtr PasswordToHGlobalUni (object password) { if (password != null) { string pwd = password as string; if (pwd != null) return Marshal.StringToHGlobalUni(pwd); #if FEATURE_X509_SECURESTRINGS SecureString securePwd = password as SecureString; if (securePwd != null) return Marshal.SecureStringToGlobalAllocUnicode(securePwd); #endif // FEATURE_X509_SECURESTRINGS } return IntPtr.Zero; } #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _AddCertificateToStore(SafeCertStoreHandle safeCertStoreHandle, SafeCertContextHandle safeCertContext); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _DuplicateCertContext(IntPtr handle, ref SafeCertContextHandle safeCertContext); #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _ExportCertificatesToBlob(SafeCertStoreHandle safeCertStoreHandle, X509ContentType contentType, IntPtr password); #endif // !FEATURE_CORECLR #if FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern int _GetAlgIdFromOid(string oid); #endif // FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetCertRawData(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _GetDateNotAfter(SafeCertContextHandle safeCertContext, ref Win32Native.FILE_TIME fileTime); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _GetDateNotBefore(SafeCertContextHandle safeCertContext, ref Win32Native.FILE_TIME fileTime); #if !FEATURE_CORECLR // Unreferenced code [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetFriendlyNameFromOid(string oid); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetIssuerName(SafeCertContextHandle safeCertContext, bool legacyV1Mode); #if !FEATURE_CORECLR // Unreferenced code [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetOidFromFriendlyName(string oid); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetPublicKeyOid(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetPublicKeyParameters(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetPublicKeyValue(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetSubjectInfo(SafeCertContextHandle safeCertContext, uint displayType, bool legacyV1Mode); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetSerialNumber(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetThumbprint(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _LoadCertFromBlob(byte[] rawData, IntPtr password, uint dwFlags, bool persistKeySet, ref SafeCertContextHandle pCertCtx); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _LoadCertFromFile(string fileName, IntPtr password, uint dwFlags, bool persistKeySet, ref SafeCertContextHandle pCertCtx); #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _OpenX509Store(uint storeType, uint flags, string storeName, ref SafeCertStoreHandle safeCertStoreHandle); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern uint _QueryCertBlobType(byte[] rawData); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern uint _QueryCertFileType(string fileName); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // X509Utils.cs // namespace System.Security.Cryptography.X509Certificates { using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Diagnostics.Contracts; internal static class X509Constants { internal const uint CRYPT_EXPORTABLE = 0x00000001; internal const uint CRYPT_USER_PROTECTED = 0x00000002; internal const uint CRYPT_MACHINE_KEYSET = 0x00000020; internal const uint CRYPT_USER_KEYSET = 0x00001000; internal const uint CERT_QUERY_CONTENT_CERT = 1; internal const uint CERT_QUERY_CONTENT_CTL = 2; internal const uint CERT_QUERY_CONTENT_CRL = 3; internal const uint CERT_QUERY_CONTENT_SERIALIZED_STORE = 4; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CERT = 5; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CTL = 6; internal const uint CERT_QUERY_CONTENT_SERIALIZED_CRL = 7; internal const uint CERT_QUERY_CONTENT_PKCS7_SIGNED = 8; internal const uint CERT_QUERY_CONTENT_PKCS7_UNSIGNED = 9; internal const uint CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED = 10; internal const uint CERT_QUERY_CONTENT_PKCS10 = 11; internal const uint CERT_QUERY_CONTENT_PFX = 12; internal const uint CERT_QUERY_CONTENT_CERT_PAIR = 13; internal const uint CERT_STORE_PROV_MEMORY = 2; internal const uint CERT_STORE_PROV_SYSTEM = 10; // cert store flags internal const uint CERT_STORE_NO_CRYPT_RELEASE_FLAG = 0x00000001; internal const uint CERT_STORE_SET_LOCALIZED_NAME_FLAG = 0x00000002; internal const uint CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004; internal const uint CERT_STORE_DELETE_FLAG = 0x00000010; internal const uint CERT_STORE_SHARE_STORE_FLAG = 0x00000040; internal const uint CERT_STORE_SHARE_CONTEXT_FLAG = 0x00000080; internal const uint CERT_STORE_MANIFOLD_FLAG = 0x00000100; internal const uint CERT_STORE_ENUM_ARCHIVED_FLAG = 0x00000200; internal const uint CERT_STORE_UPDATE_KEYID_FLAG = 0x00000400; internal const uint CERT_STORE_BACKUP_RESTORE_FLAG = 0x00000800; internal const uint CERT_STORE_READONLY_FLAG = 0x00008000; internal const uint CERT_STORE_OPEN_EXISTING_FLAG = 0x00004000; internal const uint CERT_STORE_CREATE_NEW_FLAG = 0x00002000; internal const uint CERT_STORE_MAXIMUM_ALLOWED_FLAG = 0x00001000; internal const uint CERT_NAME_EMAIL_TYPE = 1; internal const uint CERT_NAME_RDN_TYPE = 2; internal const uint CERT_NAME_SIMPLE_DISPLAY_TYPE = 4; internal const uint CERT_NAME_FRIENDLY_DISPLAY_TYPE = 5; internal const uint CERT_NAME_DNS_TYPE = 6; internal const uint CERT_NAME_URL_TYPE = 7; internal const uint CERT_NAME_UPN_TYPE = 8; } internal static class X509Utils { #if FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated internal static int OidToAlgId (string oid) { // Default Algorithm Id is CALG_SHA1 if (oid == null) return Constants.CALG_SHA1; string oidValue = CryptoConfig.MapNameToOID(oid); if (oidValue == null) oidValue = oid; // we were probably passed an OID value directly int algId = _GetAlgIdFromOid(oidValue); // CAPI does not have ALGID mappings for all of the hash algorithms, and in these cases it // returns either 0 or -1 to us. If it couldn't map the ALGID, we can see if we know what the // mapping is ourselves. if (algId == 0 || algId == -1) { if (String.Equals(oid, Constants.OID_OIWSEC_SHA256, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_256; } else if (String.Equals(oid, Constants.OID_OIWSEC_SHA384, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_384; } else if (String.Equals(oid, Constants.OID_OIWSEC_SHA512, StringComparison.Ordinal)) { algId = Constants.CALG_SHA_512; } else { throw new CryptographicException(Environment.GetResourceString("Cryptography_InvalidOID")); } } return algId; } #endif // FEATURE_CRYPTO // this method maps a cert content type returned from CryptQueryObject // to a value in the managed X509ContentType enum internal static X509ContentType MapContentType (uint contentType) { switch (contentType) { case X509Constants.CERT_QUERY_CONTENT_CERT: return X509ContentType.Cert; #if !FEATURE_CORECLR case X509Constants.CERT_QUERY_CONTENT_SERIALIZED_STORE: return X509ContentType.SerializedStore; case X509Constants.CERT_QUERY_CONTENT_SERIALIZED_CERT: return X509ContentType.SerializedCert; case X509Constants.CERT_QUERY_CONTENT_PKCS7_SIGNED: case X509Constants.CERT_QUERY_CONTENT_PKCS7_UNSIGNED: return X509ContentType.Pkcs7; case X509Constants.CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED: return X509ContentType.Authenticode; #if !FEATURE_PAL case X509Constants.CERT_QUERY_CONTENT_PFX: return X509ContentType.Pkcs12; #endif // !FEATURE_PAL #endif // !FEATURE_CORECLR default: return X509ContentType.Unknown; } } // this method maps a X509KeyStorageFlags enum to a combination of crypto API flags internal static uint MapKeyStorageFlags (X509KeyStorageFlags keyStorageFlags) { if ((keyStorageFlags & (X509KeyStorageFlags)~0x1F) != 0) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidFlag"), "keyStorageFlags"); Contract.EndContractBlock(); uint dwFlags = 0; #if FEATURE_CORECLR if (keyStorageFlags != X509KeyStorageFlags.DefaultKeySet) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidFlag"), "keyStorageFlags", new NotSupportedException()); #else // FEATURE_CORECLR if ((keyStorageFlags & X509KeyStorageFlags.UserKeySet) == X509KeyStorageFlags.UserKeySet) dwFlags |= X509Constants.CRYPT_USER_KEYSET; else if ((keyStorageFlags & X509KeyStorageFlags.MachineKeySet) == X509KeyStorageFlags.MachineKeySet) dwFlags |= X509Constants.CRYPT_MACHINE_KEYSET; if ((keyStorageFlags & X509KeyStorageFlags.Exportable) == X509KeyStorageFlags.Exportable) dwFlags |= X509Constants.CRYPT_EXPORTABLE; if ((keyStorageFlags & X509KeyStorageFlags.UserProtected) == X509KeyStorageFlags.UserProtected) dwFlags |= X509Constants.CRYPT_USER_PROTECTED; #endif // FEATURE_CORECLR else return dwFlags; } #if !FEATURE_CORECLR // this method creates a memory store from a certificate [System.Security.SecurityCritical] // auto-generated internal static SafeCertStoreHandle ExportCertToMemoryStore (X509Certificate certificate) { SafeCertStoreHandle safeCertStoreHandle = SafeCertStoreHandle.InvalidHandle; X509Utils._OpenX509Store(X509Constants.CERT_STORE_PROV_MEMORY, X509Constants.CERT_STORE_ENUM_ARCHIVED_FLAG | X509Constants.CERT_STORE_CREATE_NEW_FLAG, null, ref safeCertStoreHandle); X509Utils._AddCertificateToStore(safeCertStoreHandle, certificate.CertContext); return safeCertStoreHandle; } #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated internal static IntPtr PasswordToHGlobalUni (object password) { if (password != null) { string pwd = password as string; if (pwd != null) return Marshal.StringToHGlobalUni(pwd); #if FEATURE_X509_SECURESTRINGS SecureString securePwd = password as SecureString; if (securePwd != null) return Marshal.SecureStringToGlobalAllocUnicode(securePwd); #endif // FEATURE_X509_SECURESTRINGS } return IntPtr.Zero; } #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _AddCertificateToStore(SafeCertStoreHandle safeCertStoreHandle, SafeCertContextHandle safeCertContext); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _DuplicateCertContext(IntPtr handle, ref SafeCertContextHandle safeCertContext); #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _ExportCertificatesToBlob(SafeCertStoreHandle safeCertStoreHandle, X509ContentType contentType, IntPtr password); #endif // !FEATURE_CORECLR #if FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern int _GetAlgIdFromOid(string oid); #endif // FEATURE_CRYPTO [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetCertRawData(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _GetDateNotAfter(SafeCertContextHandle safeCertContext, ref Win32Native.FILE_TIME fileTime); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _GetDateNotBefore(SafeCertContextHandle safeCertContext, ref Win32Native.FILE_TIME fileTime); #if !FEATURE_CORECLR // Unreferenced code [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetFriendlyNameFromOid(string oid); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetIssuerName(SafeCertContextHandle safeCertContext, bool legacyV1Mode); #if !FEATURE_CORECLR // Unreferenced code [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetOidFromFriendlyName(string oid); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetPublicKeyOid(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetPublicKeyParameters(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetPublicKeyValue(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern string _GetSubjectInfo(SafeCertContextHandle safeCertContext, uint displayType, bool legacyV1Mode); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetSerialNumber(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern byte[] _GetThumbprint(SafeCertContextHandle safeCertContext); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _LoadCertFromBlob(byte[] rawData, IntPtr password, uint dwFlags, bool persistKeySet, ref SafeCertContextHandle pCertCtx); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _LoadCertFromFile(string fileName, IntPtr password, uint dwFlags, bool persistKeySet, ref SafeCertContextHandle pCertCtx); #if !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern void _OpenX509Store(uint storeType, uint flags, string storeName, ref SafeCertStoreHandle safeCertStoreHandle); #endif // !FEATURE_CORECLR [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern uint _QueryCertBlobType(byte[] rawData); [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern uint _QueryCertFileType(string fileName); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectListCommandCollection.cs
- Lease.cs
- IISUnsafeMethods.cs
- ProxyManager.cs
- SqlProvider.cs
- ITreeGenerator.cs
- BaseTypeViewSchema.cs
- SymbolEqualComparer.cs
- EventsTab.cs
- ISAPIWorkerRequest.cs
- CommandSet.cs
- CopyOnWriteList.cs
- SqlGenericUtil.cs
- PasswordBoxAutomationPeer.cs
- DesignerTransaction.cs
- CompiledScopeCriteria.cs
- BitmapData.cs
- HybridDictionary.cs
- APCustomTypeDescriptor.cs
- ColorDialog.cs
- Regex.cs
- AutomationProperties.cs
- XamlSerializationHelper.cs
- AssociationTypeEmitter.cs
- AlphabeticalEnumConverter.cs
- AssemblySettingAttributes.cs
- StrongName.cs
- OleDbRowUpdatingEvent.cs
- TimeEnumHelper.cs
- RenderData.cs
- StringToken.cs
- PrivilegedConfigurationManager.cs
- OleDbParameter.cs
- FixedPosition.cs
- SecurityContext.cs
- SchemaEntity.cs
- ConfigurationPropertyAttribute.cs
- ElementMarkupObject.cs
- HtmlFormParameterWriter.cs
- PreviousTrackingServiceAttribute.cs
- BitmapEffectvisualstate.cs
- SafeNativeMethods.cs
- TextWriter.cs
- GenericEnumConverter.cs
- NonDualMessageSecurityOverHttpElement.cs
- ExpressionEditorSheet.cs
- MorphHelper.cs
- XmlAnyElementAttributes.cs
- NameTable.cs
- Assembly.cs
- AsyncOperation.cs
- RemoveStoryboard.cs
- Size3DValueSerializer.cs
- SecurityTokenRequirement.cs
- PresentationTraceSources.cs
- SqlUDTStorage.cs
- FilterableData.cs
- ArraySortHelper.cs
- SourceFilter.cs
- DropTarget.cs
- TcpActivation.cs
- SystemResources.cs
- CqlLexerHelpers.cs
- ControlDesigner.cs
- MessageUtil.cs
- DesignTimeVisibleAttribute.cs
- EncryptedPackage.cs
- StateDesignerConnector.cs
- DataGridTablesFactory.cs
- OutputCacheModule.cs
- DataRowChangeEvent.cs
- IsolatedStorageException.cs
- FacetDescription.cs
- FontEditor.cs
- UpdatePanel.cs
- HtmlImage.cs
- HwndSubclass.cs
- FileIOPermission.cs
- TypeExtension.cs
- DelegatingStream.cs
- BitmapEffectGroup.cs
- SurrogateEncoder.cs
- TdsParserSafeHandles.cs
- MouseCaptureWithinProperty.cs
- OdbcParameter.cs
- StylusPointPropertyUnit.cs
- ArrayList.cs
- TextLineResult.cs
- SecurityStandardsManager.cs
- EmptyEnumerator.cs
- HttpListenerResponse.cs
- DataPagerField.cs
- ServicePointManagerElement.cs
- FamilyMapCollection.cs
- StreamBodyWriter.cs
- MetadataPropertyvalue.cs
- ServiceObjectContainer.cs
- Regex.cs
- Object.cs
- Icon.cs