Skip to content

aead/ee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

EE - Encrypt Everything

Encrypt everything securely.

This tool is currently not more than a demo tool - do not use it in production!

Installation

Install: go get -u github.com/aead/ee

Usage

Usage of ee:
  -dec string
        Decrypt data with the provided password
  -dst string
        The destination file ee will try to write to - default is STDOUT
  -enc string
        Encrypt data with the provided password
  -gen string
        Generate and print the derived key from the provided password
  -salt string
        The salt used to derive a key from the password
  -src string
        The source file ee will try to read from - default is STDIN

Examples of ee:

   Derive and print encryption key: ee -gen your-password -salt your-salt
   Encrypt and print file         : ee -enc your-password -salt your-salt -src /path/to/your/file
   Encrypted file copy            : ee -enc your-password -salt your-salt -src /path/to/your/src -dst /path/to/your/dst
   Decrypted file copy with pipes : cat /path/to/your/src | ee -dec your-password -salt your-salt > /path/to/your/dst

About

Encrypt Everything - CLI for encrypting everything securely

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages