Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/stonith404/encryptinator

Command-line tool to encrypt files and folders using AES-GCM encryption.
https://github.com/stonith404/encryptinator

file-encryption go

Last synced: 7 days ago
JSON representation

Command-line tool to encrypt files and folders using AES-GCM encryption.

Awesome Lists containing this project

README

        

# Encryptinator

Encryptinator is a command-line tool written in Go that can be used to encrypt and decrypt files and folders using AES-GCM encryption. It uses Argon2 key derivation function to derive a key from the password.

## Usage

```bash
encryptinator [(e)ncrypt|(d)ecrypt]
```

### Examples

Encrypt a file:

```bash
encryptinator encrypt secret.txt
```

Encrypt a folder:

```bash
encryptinator encrypt secret_folder
```

Decrypt a file:

```bash
encryptinator decrypt secret.txt
```

Decrypt a folder:

```bash
encryptinator decrypt secret_folder
```