Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enricodeleo/jscryptor-cli
:shipit: JSCryptor (RNCryptor's javascript implementation) in a command line flavor
https://github.com/enricodeleo/jscryptor-cli
cli encryption nodejs rncryptor security tool
Last synced: about 2 months ago
JSON representation
:shipit: JSCryptor (RNCryptor's javascript implementation) in a command line flavor
- Host: GitHub
- URL: https://github.com/enricodeleo/jscryptor-cli
- Owner: enricodeleo
- Created: 2016-03-22T02:30:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-10-26T23:18:41.000Z (about 3 years ago)
- Last Synced: 2024-11-14T10:50:19.983Z (about 2 months ago)
- Topics: cli, encryption, nodejs, rncryptor, security, tool
- Language: JavaScript
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# JSCryptor-cli
A cli (command line) version of [JSCryptor](https://github.com/chesstrian/JSCryptor) (a Javascript implementation of with Rob Napier's [RNCryptor](https://github.com/RNCryptor/RNCryptor)).
## Install
`npm install jscryptor-cli -g`
## Usage
Run this tool from your shell following this pattern:
`jscryptor [options] [destination]`
### Commands available
| Command | description |
| --------|-------------|
| decrypt | decrypt a file |
| encrypt | encrypt a file |### Options
| Command | description |
| --------|-------------|
| -h, --help | output usage information |
| -p, --password | password to be used during encryption (mandatory) |### Arguments
You must give the file path of the source you want to de/encrypt.
Optionally, you can pass a destination path where the result will be written. If you don't, this tool will write a new file with the same name and location of the source file but with a different extension (.dec for decrypted data, .enc for encrypted).