Warning
Disclaimer This software is provided "as is". While it implements strong cryptographic primitives, the security of your data ultimately depends on the strength of your password and the physical security of the host machine (which could be compromised by keyloggers or malware). Always keep backups of your encrypted vaults.
A portable, cross-platform encrypted container that creates a secure workspace on any USB drive or local folder without leaving traces on the host machine.
DSPV transforms any standard folder into an encrypted vault. By placing the executable in a directory or USB drive, all files placed inside the designated secure folder are encrypted on disk.
Access is provided transparently via a local WebDAV server. You interact with your files through your OS's native file explorer, and DSPV handles the encryption and decryption on the fly in memory.
Gate to encrypted vault :
encrypted vault :
- True Portability: Single standalone executable. No drivers or administrative privileges required on the host machine.
- On-the-Fly Cryptography: Uses AES-256-XTS for robust disk encryption, identical to standards used by VeraCrypt and BitLocker.
- Strong Key Derivation: Master keys are derived using Argon2id with a random 32-byte salt to thwart brute-force attacks.
- Secure Memory Management: Cryptographic keys and plain-text buffers are managed with strict
Zeroizetraits, ensuring sensitive data is securely wiped from RAM immediately after use. - Chunk-Based I/O: Files are not fully loaded into RAM. Read/Write operations are streamed and encrypted in chunks, allowing for the manipulation of massive files with minimal memory footprint.
- Copy the
dspvexecutable to the root of your USB drive or desired folder. - Launch the executable.
- You will be prompted to enter a volume encryption key.
- A folder named
secure_volume(or a custom name) is automatically created and locked with adspv.metafile.
Once unlocked, DSPV hosts a local WebDAV server acting as a gateway.
- Windows: A network drive window opens automatically. Drag, drop, and edit files directly.
- Linux / macOS: The server starts at
http://127.0.0.1:8080.- Linux: Mount using
davfs2or your file manager's "Connect to Server" feature (dav://127.0.0.1:8080). - macOS: Open Finder → Go → Connect to Server →
http://localhost:8080.
- Linux: Mount using
Note: Automatic native mounting for Linux and macOS is currently being refined.
Simply press CTRL+C in the terminal running DSPV. The server will gracefully shut down, flush all pending operations to disk, and purge the RAM.
- Rust and Cargo (1.70+)
git clone [https://github.com/g3noce/Dynamic-Secure-Portable-Volume.git](https://github.com/g3noce/Dynamic-Secure-Portable-Volume.git)
cd Dynamic-Secure-Portable-Volume
cargo build --releaseThe compiled binary will be located at target/release/dspv.
The project includes an extensive suite of critical resilience and cryptographic tests.
cargo test