crypt4ghfs 0.3.0

Fuse layer exposing Crypt4GH-encrypted files, as if they were decrypted
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

run:
    echo "The passphrase is 'bob'"
    cargo run -- --conf tests/configs/fs.conf tests/mountpoint

keygen:
    crypt4gh keygen --pk testkey.pub --sk testkey.sec

encrypt:
    crypt4gh encrypt --sk tests/keys/testkey.sec --recipient_pk tests/keys/bob.pub < tests/decrypted/file.txt > tests/rootdir/file.txt.c4gh

decrypt:
    echo "The passphrase is 'bob'"
    crypt4gh decrypt --sk tests/keys/bob.sec < tests/rootdir/file.txt.c4gh

umount:
    umount tests/mountpoint