@iden3/js-jwz
Version:
JS implementation of JWZ
11 lines (10 loc) • 590 B
TypeScript
import { hash } from './hash';
import { Token, Header } from './jwz';
import { getProvingMethod, ProofInputsPreparerHandlerFunc, ProvingMethod, ProvingMethodAlg, registerProvingMethod, ZKProof, ProofData } from './proving';
declare const proving: {
registerProvingMethod: typeof registerProvingMethod;
getProvingMethod: typeof getProvingMethod;
provingMethodGroth16AuthInstance: ProvingMethod;
provingMethodGroth16AuthV2Instance: ProvingMethod;
};
export { proving, ProofInputsPreparerHandlerFunc, ProvingMethod, ProvingMethodAlg, Token, hash, ZKProof, ProofData, Header };