SetCHAPSharedSecret_IN - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// iscsiop.h

typedef struct _SetCHAPSharedSecret_IN {
  ULONG SharedSecretSize;
  UCHAR SharedSecret[1];
} SetCHAPSharedSecret_IN, *PSetCHAPSharedSecret_IN;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-iscsiop-_setchapsharedsecret_in)

_SetCHAPSharedSecret_IN structure

Description

The SetCHAPSharedSecret_IN structure holds the input data for the SetCHAPSharedSecret method.

Members

SharedSecretSize

The size, in bytes, of the shared secret.

SharedSecret

A variable-length array that contains the shared secret.

Remarks

You must implement this method.

See also

SetCHAPSharedSecret

SetCHAPSharedSecret_OUT