Metadata-Version: 2.1
Name: usody-sanitize
Version: 0.1.2b2
Summary: A tool to securely erase/wipe data on disks HDD and SSD with a proper sanitization process.
Home-page: https://github.com/usody/sanitize
License: GNU
Author: blkpws
Author-email: me@blkpws.xyz
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pydantic (>=1.10.2,<2.0.0)
Project-URL: Repository, https://github.com/usody/sanitize
Description-Content-Type: text/markdown

# Changelog

## [unreleased]

### Features

- Info mismatch just shows a warning instead of exit
- Auto build release packages
- Builds on new debian 11 machine

## [0.1.1-beta1] - 2023-07-22

### Features

- Confirm before erase
- Newest changes with support for MNVe (PCIe)


# Usody Sanitize

> Under development.

This tool securely erases disks by performing a certificate-based validation of
the wipe process. It ensures that the data on the disk is completely and 
irrecoverably erased, protecting sensitive information from being recovered. 
The tool uses industry-standard wiping methods to securely erase the data on 
the disk, making it impossible to recover. The tool also generates a 
certificate of sanitize process that can be used to verify the authenticity of the wipe
process. This tool is perfect for businesses and individuals who need to
securely and permanently remove sensitive data from their disks.

## Dependencies

This tool uses `hdparm` and `smartmontools` for the sanitize process, make sure to have them installed before running
sanitize.

## Installation

Install the package from the official PyPi repository:

<div class="termy">

```console
$ pip install usody_sanitize

---> 100%
```

</div>

## Usage

Sanitize is writen to make it easy to use via terminal or import and integrate with your code.

### Terminal client

Erase a single disk using the default method: 

```bash
sanitize -d /dev/sdc -m BASIC --confirm
```

### Import client

@Todo: Show some examples.
