You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.8 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. # go-blindsecp256k1 [![GoDoc](https://godoc.org/github.com/arnaucube/go-blindsecp256k1?status.svg)](https://godoc.org/github.com/arnaucube/go-blindsecp256k1) [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucube/go-blindsecp256k1)](https://goreportcard.com/report/github.com/arnaucube/go-blindsecp256k1) [![Test](https://github.com/arnaucube/go-blindsecp256k1/workflows/Test/badge.svg)](https://github.com/arnaucube/go-blindsecp256k1/actions?query=workflow%3ATest)
  2. 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.
  3. **WARNING**: this repo is experimental, do not use in production.
  4. ## Usage
  5. ```go
  6. import (
  7. [...]
  8. "github.com/arnaucube/go-blindsecp256k1"
  9. )
  10. [...]
  11. // signer: create new signer key pair
  12. sk := blindsecp256k1.NewPrivateKey()
  13. signerPubK := sk.Public()
  14. // signer: when user requests new R parameter to blind a new msg,
  15. // create new signerR (public) with its secret k
  16. k, signerR := blindsecp256k1.NewRequestParameters()
  17. // user: blinds the msg using signer's R
  18. msg := new(big.Int).SetBytes([]byte("test"))
  19. msgBlinded, userSecretData, err := blindsecp256k1.Blind(msg, signerR)
  20. require.Nil(t, err)
  21. // signer: signs the blinded message using its private key & secret k
  22. sBlind, err := sk.BlindSign(msgBlinded, k)
  23. require.Nil(t, err)
  24. // user: unblinds the blinded signature
  25. sig := blindsecp256k1.Unblind(sBlind, userSecretData)
  26. // signature can be verified with signer PublicKey
  27. verified := blindsecp256k1.Verify(msg, sig, signerPubK)
  28. assert.True(t, verified)
  29. ```
  30. ## WASM usage
  31. WASM wrappers for browser usage can be found at the [wasm](https://github.com/arnaucube/go-blindsecp256k1/tree/master/wasm/) directory with an example in html&js.