blob: c5be77f9dd9f441f727f8842a65446fa39149a6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
Encpipe
=======
# Usage
Encrypt a file using a password:
```sh
encpipe -e -p password -i inputfile -o outputfile
```
Decrypt a file using a password:
```sh
encpipe -d -p password -i inputfile -o outputfile
```
`-i` and `-o` can be set to `-` or omitted to read/write from the
standard input/output.
# Dependencies
[libhydrogen](https://github.com/jedisct1/libhydrogen)
# Yes
It's using passwords. Provided on the command-line. Yes, it actually
does that. I needed that. Right now. Other options will be
implemented. Next year.
|