// ntifs.h
typedef enum {
NetworkOpenIntegrityAny,
NetworkOpenIntegrityNone,
NetworkOpenIntegritySigned,
NetworkOpenIntegrityEncrypted,
NetworkOpenIntegrityMaximum
} NETWORK_OPEN_INTEGRITY_QUALIFIER;
View the official Windows Driver Kit DDI referenceNo description available.
The NETWORK_OPEN_INTEGRITY_QUALIFIER enumeration type contains values that identify the kind of integrity restriction to attach to a file.
NetworkOpenIntegrityAnyIndicates that the file has no integrity restrictions. That is, the file has no restrictions about how to sign, encrypt, and so on.
NetworkOpenIntegrityNoneIndicates that the file is not signed or encrypted.
NetworkOpenIntegritySignedIndicates that the file is signed end-to-end.
NetworkOpenIntegrityEncryptedIndicates that the file is encrypted end-to-end.
NetworkOpenIntegrityMaximumIndicates that the file has the best integrity that is available.