An open API service indexing awesome lists of open source software.

https://github.com/danvixent/cryptany

A simple tool for encrypting/decrypting any sequence of bytes using a key
https://github.com/danvixent/cryptany

encryption golang security

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# cryptany

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

Use the following command to install it into your GOPATH

```bash
$ go install github.com/danvixent/cryptany
```

## Examples

For encryption:

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

For decryption:

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

Specifying custom output directory:

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