cim_publickeycertificate.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 61 行

MOF
61
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_PublicKeyCertificate// ==================================================================   [UMLPackagePath ( "CIM::User::PublicKey" ), 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 + =
减小字号Ctrl + -
显示快捷键?