Simple. Practical. Reliable.
fox-vault is a minimalist CLI tool for file encryption using modern cryptography.
No complex configurations. No cloud sync. Just secure, local encryption.
unlock) and destructive (burn) modes👉 https://github.com/foxhackerzdevs/fox-vault/releases
sha256sum -c fox-v1.0.1-linux-amd64.sha256
go install github.com/foxhackerzdevs/fox-vault@latest
git clone https://github.com/foxhackerzdevs/fox-vault
cd fox-vault
go build -trimpath -ldflags="-s -w" -o fox main.go
./fox -m lock -f secret.txt
Creates:
secret.txt.fox
./fox -m unlock -f secret.txt.fox
Recommended:
./fox -m unlock -f file.fox | less
./fox -m unlock -f file.fox > output.txt
./fox -m burn -f secret.txt.fox
⚠️ This operation is destructive
./fox -v
0 Success1 General error2 Invalid arguments3 Decryption failedTime=3, Memory=256MB, Threads=4)File Format:
[1-byte Version][16-byte Salt][24-byte Nonce][Ciphertext]
0600The burn mode uses overwrite + delete.
❗ On SSDs and modern filesystems, secure deletion is not guaranteed.
go mod tidy
go build -trimpath -ldflags="-s -w -X main.version=dev" -o fox main.go
Uses:
-trimpath-s -w)burn with --delete flag-o output.txt)MIT License — see LICENSE
This software is provided “as is”.
You are responsible for your data and passwords.
Built by https://github.com/foxhackerzdevs Pull requests welcome.