Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulshpilsher/genrsa
RSA keys generator written in Go
https://github.com/paulshpilsher/genrsa
cryptography go pem publickey rsa
Last synced: 2 days ago
JSON representation
RSA keys generator written in Go
- Host: GitHub
- URL: https://github.com/paulshpilsher/genrsa
- Owner: PaulShpilsher
- Created: 2023-10-20T05:52:45.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-20T08:19:44.000Z (about 1 year ago)
- Last Synced: 2024-01-27T02:38:31.387Z (10 months ago)
- Topics: cryptography, go, pem, publickey, rsa
- Language: Go
- Homepage: https://github.com/PaulShpilsher/genrsa
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# genrsa
RSA private and public keys generator written in Go
## 📝 Table of Contents
- [Build](#build)
- [Usage](#usage)
- [Example](#example)
- [Built Using](#built_using)
- [Authors](#authors)
- [Acknowledgments](#acknowledgement)```bash
make build
```genrsa [--bits number] [--output filename]
options:
--bits: optional number of bits. default 4096
--output: optional output file name. default "rsa"Private key will be written to output file name with extension .pem
Public key will be written to output file name with extension .pubGenerating a RSA keys with bit size of 4096 to files my-key.pem and my-key.pub
```bash
./genrsa --bits 4069 --output my-key
```
## Built Using- [Go](https://go.dev/) - Server Framework
- [@PaulShpilsher](https://github.com/PaulShpilsher) - Software engineer and digital nomad
- Inspiration ["Simple Made Easy" - Rich Hickey (2011)](https://www.youtube.com/watch?v=SxdOUGdseq4)