Skip to content

Instantly share code, notes, and snippets.

@lnrw
lnrw / blum-micali.js
Created September 9, 2024 21:19
Blum Micali & BBS in JavaScript
class BlumMicali {
p;
g;
state;
constructor(p, g, seed) {
if (typeof seed !== "bigint" || typeof p !== "bigint" || typeof g !== "bigint") {
throw new TypeError("Values must be BigInts");
}