Sha256: 27df87c7c318adc9df203bcf29201fcef37e2a8abc49330aac0f6d69430fa004
Contents?: true
Size: 814 Bytes
Versions: 2
Compression:
Stored size: 814 Bytes
Contents
fernet-cli ========== Now, the power of [Fernet](https://github.com/fernet/spec) is available from the shell! ``` tmaher@og-kush:~$ fernet-encrypt --help Usage: fernet-encrypt [-p | -k <keyfile>] -i <infile> -o <outfile> -p, --prompt Prompt for keys -k, --keyfile KEYFILE -i, --infile INPUTFILE -o, --outfile OUTPUTFILE ``` And there's a corresponding `fernet-decrypt` too. The key should be a base64-encoded blob of 256-bits. If you'd rather not write it out to a file or get promted for it, you can save it to shell environment variable `FERNET_CLI_KEY`. For `fernet-encrypt`, the infile is plaintext and the outfile is ciphertext. For `fernet-decrypt`, the infile is ciphertext and the outfile is plaintext. For more information, see https://github.com/fernet/spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fernet-cli-0.4 | README.md |
fernet-cli-0.3 | README.md |