-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
save encryption key with a hash so we can correctly validate if pass is ok on fs init or on chang epass added examples for changing pass check dir/key structure if data-dir is an existing non-empty dir
- Loading branch information
1 parent
298b1ec
commit 389124e
Showing
6 changed files
with
402 additions
and
269 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rencfs" | ||
description = "An encrypted file system that mounts with FUSE on Linux. It can be used to create encrypted directories." | ||
version = "0.1.35" | ||
version = "0.1.36" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Radu Marias <[email protected]>"] | ||
|
@@ -40,6 +40,7 @@ strum_macros = "0.26.2" | |
rpassword = "7.3.1" | ||
cryptostream = "0.3.2" | ||
weak-table = "0.3.2" | ||
anyhow = "1.0.82" | ||
|
||
[package.metadata.aur] | ||
depends = ["fuse3"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.