delete in chunks

This commit is contained in:
2026-03-08 23:08:53 +01:00
parent 53a222a7da
commit 7873020e72
3 changed files with 24 additions and 40 deletions

View File

@@ -4,7 +4,7 @@ Desktop app for securely storing sensitive files
## Features
* **Pretty usable UI**
* **Overkill encryption:** XChaCha20-Poly1305 + Argon2id(m=1GB,t=6,p=4) key derivation
* **Overkill encryption:** XChaCha20-Poly1305 + Argon2id(m=1GB,t=8,p=4) key derivation
* **Cross-platform-ish:** Builds on Linux, Windows and macOS
* **Drag and Drop support**
@@ -21,8 +21,11 @@ cmake --build build -j $(nproc)
### Arch
```
sudo pacman -S base-devel
makepkg -si
sudo pacman -Syu base-devel cmake qt6-base botan
cmake -S . -B build
cmake --build build -j $(nproc)
./build/dull
```
### Windows (MSYS2)