STORAGE_SANITIZE_METHOD - NtDoc

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

typedef enum _STORAGE_SANITIZE_METHOD {
  StorageSanitizeMethodDefault,
  StorageSanitizeMethodBlockErase,
  StorageSanitizeMethodCryptoErase
} STORAGE_SANITIZE_METHOD, *PSTORAGE_SANITIZE_METHOD;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntddstor-storage_sanitize_method)

Description

The STORAGE_SANITIZE_METHOD enumeration identifies the sanitize method for an NVMe device.

Constants

StorageSanitizeMethodDefault

Perform the default sanitize operation. Currently, the default is to perform a Crypto Erase sanitize operation.

StorageSanitizeMethodBlockErase

Perform a Block Erase sanitize operation.

StorageSanitizeMethodCryptoErase

Perform a Crypto Erase sanitize operation.

Remarks

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.

See also

IOCTL_STORAGE_REINITIALIZE_MEDIA

STORAGE_REINITIALIZE_MEDIA