Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/morishin/locker

Shell script to protect a text file by AES encryption
https://github.com/morishin/locker

Last synced: 23 days ago
JSON representation

Shell script to protect a text file by AES encryption

Awesome Lists containing this project

README

        

# locker
*locker* is a shell script to protect a text file by AES encryption.

## Install
You can install *locker* via [Homebrew](http://brew.sh/).

```shell
brew tap morishin/morishin
brew install locker
```

## Usage
- Create a new text file and encode.

```shell
locker lock
(Edit file...)
Input password:
Input password again:
'' created.
```

- Open a encoded file.

```shell
locker open
Input password:
(Display file content)
```

- You can edit content of a encoded file.

```shell
locker edit
Input password:
(Edit file...)
' edited.'
```

- And you can change password.

```shell
locker chpass
Input password:
Input NEW password:
Password updated.
```
- More help information.

```shell
locker help
```