mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-23 09:55:57 +03:00
9fc7c31083
fixes #69 Signed-off-by: Tobias Gurtzick <magic@wizardtales.com>
34 lines
940 B
TypeScript
34 lines
940 B
TypeScript
/*
|
|
* mCaptcha is a PoW based DoS protection software.
|
|
* This is the frontend web component of the mCaptcha system
|
|
* Copyright © 2023 Aravinth Manivnanan <realaravinth@batsense.net>.
|
|
*
|
|
* Use of this source code is governed by Apache 2.0 or MIT license.
|
|
* You shoud have received a copy of MIT and Apache 2.0 along with
|
|
* this program. If not, see <https://spdx.org/licenses/MIT.html> for
|
|
* MIT or <http://www.apache.org/licenses/LICENSE-2.0> for Apache.
|
|
*/
|
|
|
|
import log from "../logger";
|
|
|
|
import prove from "./prove";
|
|
import {PoWConfig, ServiceWorkerWork} from "./types";
|
|
|
|
log.log("worker registered");
|
|
onmessage = async (e) => {
|
|
console.debug("message received at worker");
|
|
const config: PoWConfig = e.data;
|
|
|
|
const t0 = performance.now();
|
|
const work = await prove(config);
|
|
|
|
const t1 = performance.now();
|
|
const duration = t1 - t0;
|
|
|
|
const res: ServiceWorkerWork = {
|
|
work,
|
|
duration,
|
|
};
|
|
|
|
postMessage(res);
|
|
};
|