wallet-core/packages/taler-util/src/argon2-impl.missing.ts

11 lines
224 B
TypeScript

export async function HashArgon2idImpl(
password: Uint8Array,
salt: Uint8Array,
iterations: number,
memorySize: number,
hashLength: number,
): Promise<Uint8Array> {
throw new Error("Method not implemented.");
}