⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cim_publickeycertificate.mof

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻 MOF
字号:
// Copyright (c) 2005 DMTF.  All rights reserved.// ==================================================================//  CIM_PublicKeyCertificate// ==================================================================   [Version ( "2.8.0" ), Description (       "A PublicKeyCertificate is a credential that is "       "cryptographically signed by a trusted Certificate Authority "       "(CA) and issued to an authenticated entity (e.g., human user, "       "service, etc.) called the Subject in the certificate. The "       "public key in the certificate is cryptographically related to "       "a private key that is held and kept private by the "       "authenticated Subject. The certificate and its related private "       "key can then be used for establishing trust relationships and "       "securing communications with the Subject. Refer to the "       "ITU/CCITT X.509 standard as an example of such certificates.")]class CIM_PublicKeyCertificate : CIM_Credential {      [Key,          Propagated ( "CIM_CertificateAuthority.SystemCreationClassName"           ), Description (          "The scoping System's CCN."),        MaxLen ( 256 )]   string SystemCreationClassName;      [Key, Propagated ( "CIM_CertificateAuthority.SystemName" ),        Description (          "The scoping System's Name."),        MaxLen ( 256 )]   string SystemName;      [Key, Propagated ( "CIM_CertificateAuthority.CreationClassName" ),        Description (          "The scoping Service's CCN."),        MaxLen ( 256 )]   string ServiceCreationClassName;      [Key, Propagated ( "CIM_CertificateAuthority.Name" ),        Description (          "The scoping Service's Name."),        MaxLen ( 256 )]   string ServiceName;      [Key, Description (          "Certificate subject identifier."),        MaxLen ( 256 )]   string Subject;      [Description (          "Alternate subject identifier for the Certificate."),        MaxLen ( 256 )]   string AltSubject;      [Description (          "The DER-encoded raw public key."),        OctetString]   uint8 PublicKey[];};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -