// iscsiop.h
typedef struct _SetCHAPSharedSecret_IN {
ULONG SharedSecretSize;
UCHAR SharedSecret[1];
} SetCHAPSharedSecret_IN, *PSetCHAPSharedSecret_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The SetCHAPSharedSecret_IN structure holds the input data for the SetCHAPSharedSecret method.
SharedSecretSizeThe size, in bytes, of the shared secret.
SharedSecretA variable-length array that contains the shared secret.
You must implement this method.