Socket
Socket
Sign inDemoInstall

bursar

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bursar

Generate RSA keys as PKCS#1, PKCS#8 or BER.


Version published
Weekly downloads
7
decreased by-50%
Maintainers
1
Install size
20.1 kB
Created
Weekly downloads
 

Readme

Source

Generate RSA keys in PKCS#1, PKCS#8 or BER format.

Long-form PKCS#1 field names are used for parameter names, not their (rather terse) RSA counterparts.

rsaPrivateKey(options)

  • options {Object}
    • modulus {BigInt|Buffer|Uint8Array} RSA n parameter.
    • publicExponent {BigInt|Buffer|Uint8Array} RSA e parameter.
    • privateExponent {BigInt|Buffer|Uint8Array} RSA d parameter.
    • prime1 {BigInt|Buffer|Uint8Array} RSA p parameter.
    • prime2 {BigInt|Buffer|Uint8Array} RSA q parameter.
    • exponent1 {BigInt|Buffer|Uint8Array} RSA dp parameter, d % (p - 1).
    • exponent2 {BigInt|Buffer|Uint8Array} RSA dq parameter, d % (q - 1).
    • coefficient {BigInt|Buffer|Uint8Array} RSA inverseQ parameter, q * inverseQ === 1 % p.
  • Returns: {Array} BER-encoded RSA private key.

Keep prime1, prime2 and privateExponent secure at all times; the security of the private key depends on it.

Example:

const {rsaPrivateKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const privateExponent = 0xBAD5ECn
const prime1 = 0xBAD5ECn
const prime2 = 0xBAD5ECn
const exponent1 = 0xBAD5ECn
const exponent2 = 0xBAD5ECn
const coefficient = 0xBAD5ECn
const options = {modulus, publicExponent, privateExponent, prime1, prime2, exponent1, exponent2, coefficient}
const key = rsaPrivateKey(options)
console.log(key)
// <Buffer 30 30 02 01 00 02 04 00 ba d5 ec 02 01 02 02 04 00 ba d5 ec 02 04 00
// ba d5 ec 02 04 00 ba d5 ec 02 04 00 ba d5 ec 02 04 00 ba d5 ec 02 04 00 ba d5
// ec>

rsaPrivateKey.pkcs1(options)

Like rsaPrivateKey() but the result is returned as a PKCS#1-encoded string.

Example:

const {rsaPrivateKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const privateExponent = 0xBAD5ECn
const prime1 = 0xBAD5ECn
const prime2 = 0xBAD5ECn
const exponent1 = 0xBAD5ECn
const exponent2 = 0xBAD5ECn
const coefficient = 0xBAD5ECn
const options = {modulus, publicExponent, privateExponent, prime1, prime2, exponent1, exponent2, coefficient}
const key = rsaPrivateKey.pkcs1(options)
console.log(key)
// -----BEGIN RSA PRIVATE KEY-----
// MDACAQACBAC61ewCAQICBAC61ewCBAC61ewCBAC61ewCBAC61ewCBAC61ewCBAC6
// 1ew=
// -----END RSA PRIVATE KEY-----

rsaPrivateKey.pkcs8(options)

Like rsaPrivateKey() but the result is returned as a PKCS#8-encoded string.

Example:

const {rsaPrivateKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const privateExponent = 0xBAD5ECn
const prime1 = 0xBAD5ECn
const prime2 = 0xBAD5ECn
const exponent1 = 0xBAD5ECn
const exponent2 = 0xBAD5ECn
const coefficient = 0xBAD5ECn
const options = {modulus, publicExponent, privateExponent, prime1, prime2, exponent1, exponent2, coefficient}
const key = rsaPrivateKey.pkcs8(options)
console.log(key)
// -----BEGIN PRIVATE KEY-----
// MEYCAQAwDQYJKoZIhvcNAQEBBQAEMjAwAgEAAgQAutXsAgECAgQAutXsAgQAutXs
// AgQAutXsAgQAutXsAgQAutXsAgQAutXs
// -----END PRIVATE KEY-----

rsaPublicKey(options)

  • options {Object}
    • modulus {BigInt|Buffer|Uint8Array} RSA n parameter.
    • publicExponent {BigInt|Buffer|Uint8Array} RSA e parameter.
  • Returns: {Array} BER-encoded RSA public key.

Example:

const {rsaPublicKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const key = rsaPublicKey({modulus, publicExponent})
console.log(Buffer.from(key))
// <Buffer 30 09 02 04 00 b4 d5 ec 02 01 02>

rsaPublicKey.pkcs1(options)

Like rsaPublicKey() but the result is returned as a PKCS#1-encoded string.

Example:

const {rsaPublicKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const key = rsaPublicKey.pkcs1({modulus, publicExponent})
console.log(key)
// -----BEGIN RSA PUBLIC KEY-----
// MAkCBAC01ewCAQI=
// -----END RSA PUBLIC KEY-----

rsaPublicKey.pkcs8(options)

Like rsaPublicKey() but the result is returned as a PKCS#8-encoded string.

Example:

const {rsaPublicKey} = require('bursar')
const modulus = 0xBAD5ECn	// insecure; example only
const publicExponent = 0x2n
const key = rsaPublicKey.pkcs8({modulus, publicExponent})
console.log(key)
// -----BEGIN PUBLIC KEY-----
// MB0wDQYJKoZIhvcNAQEBBQADDAAwCQIEALTV7AIBAg==
// -----END PUBLIC KEY-----

changelog

v0.0.3 05/01/2020
  • add examples to README
v0.0.2 04/01/2020
  • implement missing rsaPrivateKey.pkcs8()
v0.0.1 04/01/2020
  • initial release

FAQs

Last updated on 05 Jan 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc