Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

A command line tool for RSA encryption and decryption.

Awesome Lists containing this project

README

        

The logo of RSA CLI

RSA CLI

A command line tool for RSA encryption and decryption.

Get Started · Docs

```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!
```