An open API service indexing awesome lists of open source software.

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

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
```