mvasilkov / jwa-purejs

A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm

Home Page:https://github.com/mvasilkov/jwa-purejs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jwa-purejs

A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm.

npm


This library is a drop-in replacement for the popular jwa package.

I wrote it to remove the dependency on crypto-browserify.

Installation

yarn add jwa-purejs

Usage

webpack.config.js

module.exports = {
  resolve: {
    alias: {
      jwa: 'jwa-purejs',
    }
  }
}

webpack Command Line

webpack --resolve-alias jwa=jwa-purejs

About

A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm

https://github.com/mvasilkov/jwa-purejs


Languages

Language:JavaScript 100.0%