2.2.23 CLUSTER_CERT

 

The CLUSTER_CERT structure contains certificate information and the cluster secret that is distributed by the client to all nodes in the cluster.

    typedef struct _CLUSTER_CERT {
        ULONG CbCertData;
        ULONG CbKeyData;
        BYTE CertData[1024 * 5];
        BYTE KeyData[1024 * 10];
        WCHAR ClusterSecret[32 + 1];
    } CLUSTER_CERT;

CbCertData: Length of the CertData field.

CbKeyData: Length of the KeyData field.

CertData: Exported certificate blob from the certificate store.

KeyData: Exported private key blob from the crypto container that matches the certificate.

ClusterSecret: Cluster secret data as defined in section 3.10.1.