From 0de12a9a905cb04468a12457454cb02b30c9726d Mon Sep 17 00:00:00 2001 From: arnaucube Date: Fri, 5 Feb 2021 21:56:56 +0100 Subject: [PATCH] Update readme, npm package to v0.0.4 --- README.md | 7 ++----- package.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 91e3fe3..6792712 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,7 @@ -# blindsecp256k1-js [![npm](https://img.shields.io/npm/v/blindsecp256k1)](https://img.shields.io/npm/v/blindsecp256k1) +# blindsecp256k1-js [![npm](https://img.shields.io/npm/v/blindsecp256k1)](https://www.npmjs.com/package/blindsecp256k1) [![Test](https://github.com/arnaucube/blindsecp256k1-js/workflows/Test/badge.svg)](https://github.com/arnaucube/blindsecp256k1-js/actions?query=workflow%3ATest) -Javascript implementation compatible with https://github.com/arnaucube/go-blindsecp256k1 +Typescript implementation compatible with https://github.com/arnaucube/go-blindsecp256k1 Blind signature over [secp256k1](https://en.bitcoin.it/wiki/Secp256k1), based on *"[New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem](https://sci-hub.do/10.1109/ICCKE.2013.6682844)"* paper by Hamid Mala & Nafiseh Nezhadansari. **WARNING**: this repo is experimental, do not use in production. - -## Build for browser -By running `npm run browserify`, and the file `blindsecp256k1-browser.js` will be generated, which can be imported in the html and used as `blindsecp256k1`. diff --git a/package.json b/package.json index b83be78..f163d8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blindsecp256k1", - "version": "0.0.1", + "version": "0.0.4", "description": "Blind signatures over secp256k1, compatible with https://github.com/arnaucube/go-blindsecp256k1", "main": "dist/index", "types": "dist/index",