Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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.