Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/morishin/locker
- Owner: morishin
- License: other
- Created: 2014-05-23T21:13:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-03-12T13:04:35.000Z (over 5 years ago)
- Last Synced: 2024-05-02T02:13:36.921Z (7 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```