aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/argon2-impl.missing.ts
blob: 32a10fe5a174ea197fc2ea96810b0f5dd0ea081f (plain)
1
2
3
4
5
6
7
8
9
10

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