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.

18 lines
565 B

  1. # blindsig-client-server-example
  2. Example of usage of https://github.com/arnaucube/go-blindsecp256k1, including a server representing the 'signer', and a web representing the 'user'.
  3. ## Run
  4. - Needs [go](https://golang.org/) installed
  5. - Add the file `wasm_exec.js` in the `client` directory:
  6. ```
  7. cd client
  8. cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .
  9. ```
  10. - Run the server:
  11. ```
  12. go run main.go
  13. ```
  14. - Open the browser at `127.0.0.1:3000/web`
  15. ## Flow
  16. ![diagram](https://raw.githubusercontent.com/arnaucube/blindsig-client-server-example/master/diagram.png "diagram")