// ntddstor.h
typedef enum _STORAGE_SANITIZE_METHOD {
StorageSanitizeMethodDefault,
StorageSanitizeMethodBlockErase,
StorageSanitizeMethodCryptoErase
} STORAGE_SANITIZE_METHOD, *PSTORAGE_SANITIZE_METHOD;
View the official Windows Driver Kit DDI referenceNo description available.
The STORAGE_SANITIZE_METHOD enumeration identifies the sanitize method for an NVMe device.
StorageSanitizeMethodDefaultPerform the default sanitize operation. Currently, the default is to perform a Crypto Erase sanitize operation.
StorageSanitizeMethodBlockErasePerform a Block Erase sanitize operation.
StorageSanitizeMethodCryptoErasePerform a Crypto Erase sanitize operation.
STORAGE_SANITIZE_METHOD applies to NVMe devices only. It is specified in aSTORAGE_REINITIALIZE_MEDIA structure, which is optionally provided to IOCTL_STORAGE_REINITIALIZE_MEDIA.
IOCTL_STORAGE_REINITIALIZE_MEDIA