Partager via


2.2.1.2.2 KERB_RPC_OCTET_STRING

A KERB_RPC_OCTET_STRING structure is used to contain a padata-value. See [RFC4120] section 5.2.7 for the PA-DATA sequence definition that contains a padata-type and a padata-value. This structure format follows the definition for octet string in [MS-DTYP] section 2.4.4.17.5. See also definition for octet in [MS-DTYP] section 2.1.5.

 typedef struct _KERB_RPC_OCTET_STRING {
     ULONG length;
     [size_is(length)] PUCHAR value;
 } KERB_RPC_OCTET_STRING;

length: A ULONG ([MS-DTYP] section 2.2.51) that contains the length of the value array field.

value: A pointer to a UCHAR ([MS-DTYP] section 2.2.45), an array of 8-bit data items.