asymmetrical-signing

2.0.1 • Public • Published

Asymmetrical Signing

NPM version Build status Test coverage Dependency Status License Downloads

Asymmetrical signing using secp256k1. Sign data with a private key, the allow others to verify the data with a public key.

Example

const asign = require('asymmetrical-signing')

// create keys
const privateKey = asign.createPrivateKey()
const publicKey = asign.createPublicKey(privateKey)

// convert some data into a message
const message = asign.createMessage({
  message: 'something'
})

// sign it with the private ey
const signature = asign.signMessage(message, privateKey)

// verify the data with a public key
console.log(asign.verifyMessage(message, signature, publicKey))

Data

Types of data supported:

  • string
  • Buffer
  • objects
  • arrays

Readme

Keywords

none

Package Sidebar

Install

npm i asymmetrical-signing

Weekly Downloads

0

Version

2.0.1

License

MIT

Last publish

Collaborators

  • jongleberry