https://github.com/mvasilkov/jwa-purejs
A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm
https://github.com/mvasilkov/jwa-purejs
elliptic-curves es256 isomorphic javascript jwa
Last synced: 6 months ago
JSON representation
A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm
- Host: GitHub
- URL: https://github.com/mvasilkov/jwa-purejs
- Owner: mvasilkov
- Created: 2019-05-26T16:53:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T11:57:18.000Z (over 6 years ago)
- Last Synced: 2025-03-29T03:11:17.137Z (7 months ago)
- Topics: elliptic-curves, es256, isomorphic, javascript, jwa
- Language: JavaScript
- Homepage: https://github.com/mvasilkov/jwa-purejs
- Size: 1000 Bytes
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
jwa-purejs
===A pure JavaScript implementation of the [RFC 7518][rfc7518] ES256 digital signature algorithm.
[![npm][npm-image]][npm-url]
---
This library is a drop-in replacement for the popular [jwa][jwa] package.
I wrote it to remove the dependency on **crypto-browserify**.
Installation
---yarn add jwa-purejs
Usage
---**webpack.config.js**
```js
module.exports = {
resolve: {
alias: {
jwa: 'jwa-purejs',
}
}
}
```**webpack Command Line**
webpack --resolve-alias jwa=jwa-purejs
[jwa]: https://www.npmjs.com/package/jwa
[npm-image]: https://img.shields.io/npm/v/jwa-purejs.svg?style=flat-square
[npm-url]: https://www.npmjs.com/package/jwa-purejs
[rfc7518]: https://tools.ietf.org/html/rfc7518#section-3.4