Skip to content

A simple tool for encrypting/decrypting any sequence of bytes using a key

Notifications You must be signed in to change notification settings

danvixent/cryptany

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cryptany

A simple tool for encrypting any sequence of bytes using a key

Use the following command to install it into your GOPATH

 $   go install github.com/danvixent/cryptany

Examples

For encryption:

    $ cryptany -path /path/to/file -key somekey -enc
        encrypted file: /path/to/file.crypt

For decryption:

    $ cryptany -path /path/to/file.crypt -key somekey -dec
        decrypted file: /path/to/file

Specifying custom output directory:

    $ cryptany -path /path/to/file -key somekey -enc -out ~/crypts
        encrypted file: ~/crypts/file.crypt

About

A simple tool for encrypting/decrypting any sequence of bytes using a key

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages