summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/argon2-impl.missing.ts
blob: 2e175bc7537eea20a8da8a7f956869cee6328eb5 (plain)
1
2
3
4
5
6
7
8
9
export async function HashArgon2idImpl(
  password: Uint8Array,
  salt: Uint8Array,
  iterations: number,
  memorySize: number,
  hashLength: number,
): Promise<Uint8Array> {
  throw new Error("Method not implemented.");
}