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

https://github.com/nemuelw/fcrypt

Encrypt and decrypt files & directories from the command line
https://github.com/nemuelw/fcrypt

aes-256 aes-decryption aes-encryption aes-encryption-decryption command-line command-line-tool decryption encryption encryption-decryption file-decryption file-decryptor file-encryption file-encryptor golang golang-package

Last synced: 7 months ago
JSON representation

Encrypt and decrypt files & directories from the command line

Awesome Lists containing this project

README

          

# fcrypt

Encrypt and decrypt files and directories on the command line using the Advanced Encryption Standard (256-bit)

## Installation

Visit the [releases](https://github.com/nemzyxt/fcrypt/releases) section

## Usage

### Help

```
fcrypt -h
```

### Get version

```
fcrypt -v
```

### Encryption

```
fcrypt -e test.txt -k asdfghjkldncassdfghjklkjhfgdhsyt
```

```
fcrypt -e Documents/ -k asdfghjkldncassdfghjklkjhfgdhsyt
```

Use a randomly generated key:

```
fcrypt -e Documents/ --rand-key
```

### Decryption

```
fcrypt -d test.enc -k asdfghjkldncassdfghjklkjhfgdhsyt
```

```
fcrypt -d Documents/ -k asdfghjkldncassdfghjklkjhfgdhsyt
```