Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brenoepics/rsa-hex-gen
Generate an RSA key pair in hexadecimal format.
https://github.com/brenoepics/rsa-hex-gen
asymmetric cryptography encryp hex pair-generator rsa
Last synced: about 1 month ago
JSON representation
Generate an RSA key pair in hexadecimal format.
- Host: GitHub
- URL: https://github.com/brenoepics/rsa-hex-gen
- Owner: brenoepics
- License: apache-2.0
- Created: 2023-12-07T16:51:14.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-26T20:31:17.000Z (10 months ago)
- Last Synced: 2024-01-26T21:32:48.325Z (10 months ago)
- Topics: asymmetric, cryptography, encryp, hex, pair-generator, rsa
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# RSA Key Hex Pair Generator
## Description
This is a simple Node.js script that generates an RSA key pair and converts the keys to hexadecimal format.
## Installation
1. Ensure you have Node.js installed on your machine.
2. Clone this repository.## Usage
To generate an RSA key pair, simply run the script with Node.js:
```bash
npm run start
```Then, you will find your RSA key pair at `output/hex.env`.
## Packages
[node:crypto](https://nodejs.org/api/crypto.html) - The crypto module provides a way of handling encrypted data.
[node:fs](https://nodejs.org/api/fs.html) - The Node.js file system module allows you to work with the file system on your computer.
[node:path](https://nodejs.org/api/path.html) - The Node.js path module provides utilities for working with file and directory paths.