Go to file
2021-12-08 14:32:27 +05:30
.github CI: downgrade node env 2021-12-07 19:06:47 +05:30
src pow_sha256 serializes the phrase on which the proof is to be computed 2021-12-08 13:43:24 +05:30
.eslintrc.js setup tests and linting 2021-12-07 19:01:36 +05:30
.gitignore polyfill implementation 2021-12-07 15:35:10 +05:30
jest.config.ts pow_sha256 serializes the phrase on which the proof is to be computed 2021-12-08 13:43:24 +05:30
LICENSE_APACHE added licenses 2021-06-27 21:31:59 +05:30
LICENSE_MIT added licenses 2021-06-27 21:31:59 +05:30
package.json prep for release 2021-12-08 14:32:27 +05:30
README.md prep for release 2021-12-08 14:32:27 +05:30
tsconfig.json prep for release 2021-12-08 14:32:27 +05:30
webpack.config.js prep for release 2021-12-08 14:32:27 +05:30
yarn.lock setup tests and linting 2021-12-07 19:01:36 +05:30

PoW JavaScript library

JavaScript library to generate PoW for mCaptcha

0.1.0 Build) codecov

Usage

To generate proof-of-work, per mCaptcha specification:

import {generate_proof} from "@mcaptcha/pow_sha256-polyfill";

let salt = "randomsaltvalueprovidedbymcaptcha";
let phrase = "randomphrasevalueprovidedbymcaptcha";
let difficulty = 50_000;

let work = await generate_proof(salt, phrase, difficulty);