Socket
Socket
Sign inDemoInstall

browserify-sign

Package Overview
Dependencies
27
Maintainers
4
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    browserify-sign

adds node crypto signing for browsers


Version published
Weekly downloads
7.3M
decreased by-17.66%
Maintainers
4
Install size
934 kB
Created
Weekly downloads
 

Package description

What is browserify-sign?

The browserify-sign package is a part of the crypto-browserify project, which aims to emulate Node.js's crypto module for use in the browser. It specifically implements the sign and verify functionality for RSA and ECDSA, which are cryptographic algorithms used for digital signatures.

What are browserify-sign's main functionalities?

Signing data

This feature allows you to create digital signatures using RSA or ECDSA. The code sample demonstrates how to sign some data using an RSA private key.

const createSign = require('browserify-sign').createSign;
const sign = createSign('RSA-SHA256');
sign.update('some data to sign');
const privateKey = '...'; // Your RSA private key
const signature = sign.sign(privateKey, 'base64');

Verifying signatures

This feature enables you to verify digital signatures to ensure data integrity and authenticity. The code sample shows how to verify a signature using an RSA public key.

const createVerify = require('browserify-sign').createVerify;
const verify = createVerify('RSA-SHA256');
verify.update('some data to sign');
const publicKey = '...'; // Your RSA public key
const signature = '...'; // The signature to verify
const isValid = verify.verify(publicKey, signature, 'base64');

Other packages similar to browserify-sign

Readme

Source

browserify-sign

NPM Package Build Status Dependency status

js-standard-style

A package to duplicate the functionality of node's crypto public key functions, much of this is based on Fedor Indutny's work on indutny/tls.js.

LICENSE

ISC

FAQs

Last updated on 04 Aug 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