MSFC_DH_Chap_Parameters WMI Class

A WMI client uses the MSFC_DH_Chap_Parameters class to set the response parameters for a CHAP challenge on a virtual port.

The MSFC_DH_Chap_Parameters class is defined as follows in Npivwmi.mof:

class MSFC_DH_Chap_Parameters
{    
    [WmiDataId(1),
     Description("Length in bytes of the shared secret."):Amended]
    uint32 SharedSecretLength;
   
    [WmiDataId(2),
    Description("Shared Secret Encoding"):Amended,
     ValueMap {"1", "2"},
     Values {"Printable ASCII", "Binary"}]
    uint8 SecretEncoding;

    [WmiDataId(3),
     WmiSizeIs("SharedSecretLength"),
     Description("Shared secret to be used at the basis of a DH-CHAP challenge."):Amended]
    uint8 SharedSecret[];
};

When compiled by the WMI tool suite, this class definition produces the following data structure:

MSFC_DH_Chap_Parameters

There are no methods associated with this WMI class.