Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MrWillCom/rsa-cli
A command line tool for RSA encryption and decryption.
https://github.com/MrWillCom/rsa-cli
cli command-line-tool decryption encryption nodejs rsa rsa-encryption
Last synced: 6 days ago
JSON representation
A command line tool for RSA encryption and decryption.
- Host: GitHub
- URL: https://github.com/MrWillCom/rsa-cli
- Owner: MrWillCom
- License: mit
- Created: 2021-07-19T06:54:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T14:21:22.000Z (over 2 years ago)
- Last Synced: 2024-08-02T20:47:15.882Z (3 months ago)
- Topics: cli, command-line-tool, decryption, encryption, nodejs, rsa, rsa-encryption
- Language: JavaScript
- Homepage: https://rsa.js.org/
- Size: 446 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RSA CLI
A command line tool for RSA encryption and decryption.
```sh
$ rsa generate myKey -l 1024
Generated a new key pair: 'myKey'
$ rsa encrypt myKey 'Hello, World!'
Encrypted 'Hello, World!' with key 'myKey':
.........
$ rsa decrypt myKey '.........'
Decrypted '.........' with key 'myKey
Hello, World!
```