Skip to content

Stepsize/node-genrsa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generates a public/private keypair using openssl genrsa.

This module requires OpenSSL to be installed on the system.

Usage

import keyPair from 'node-genrsa';

const options = {
  bits: 1024,
  exponent: 65537
}
const keys = await keyPair(options);
console.log(keys.private);
console.log(keys.public);

Options

parameter default description
bits 2048 The size of the private key to generate in bits
exponenet 65537 The public exponent to use, either 65537 or 3. The default is 65537.

About

Generate public and private keypair using OpenSSL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published