furet

command module
v0.0.0-...-3d81bac Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 20, 2022 License: MIT Imports: 9 Imported by: 0

README

Furet

Simple command line interface to encrypt/decrypt data encoded with a Fernet encryption key.

$ furet -h

furet encrypts or decrypts with the Fernet symmetric encryption.

Usage:
 
    furet [-o OUTPUT] --key KEY [INPUT]
    furet [--decrypt] --key KEY [-o OUTPUT] [INPUT]

Options:
    -e, --encrypt     Encrypt the input to the output. Default if omitted.
    -d, --decrypt     Decrypt the input to the output.
    -k, --key         Key to use. (accepts hexadecimal standard base64 or URL-safe base64.
    -g, --generate    Generate a random key.
INPUT defaults to standard input, and OUTPUT defaults to standard output.

Examples:
    $ KEY=$(furet -g)
    $ furet --key $KEY -o file.furet file
    $ furet --key $KEY -o file.furet < file
    $ furet --decrypt -k $KEY -o file file.furet	
    $ furet --decrypt -k $KEY < file.furet > file`

Documentation

Overview

furet is a minimal command line interface to encrypt or decrypt data with Fernet.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL