https://github.com/nwmarino/soteria
encrypted FAT-based filesystems, containerized
https://github.com/nwmarino/soteria
containerization encryption fat filesystem openssl
Last synced: 8 months ago
JSON representation
encrypted FAT-based filesystems, containerized
- Host: GitHub
- URL: https://github.com/nwmarino/soteria
- Owner: nwmarino
- Created: 2024-12-01T05:04:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-06T07:18:16.000Z (over 1 year ago)
- Last Synced: 2025-10-10T13:33:11.731Z (8 months ago)
- Topics: containerization, encryption, fat, filesystem, openssl
- Language: C++
- Homepage:
- Size: 2.77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# soteria
Soteria provides a way to centralize encrypted data on any drive. By containerizing
files, encrypted data can be moved in one contained place.
Creates a new container `MyContainer` in the current working directory:
```sh
soteria --mk MyContainer --pw
```
Deletes a container `MyContainer` in the current working directory:
```sh
soteria --rm MyContainer --pw
```
Write and encrypt one or more files to the container `MyContainer`:
```sh
soteria MyContainer --pw --store passwords.txt presentation.mp4
```
Decrypt and read one or more files from the container `MyContainer`:
```sh
soteria MyContainer --pw --load github_password.txt
```