Skip to content

Commit

Permalink
fix(argond2id):reordering parameters order during serialization to ma…
Browse files Browse the repository at this point in the history
…tch phc standard
  • Loading branch information
Benjamin-htr committed Sep 16, 2024
1 parent 7289d25 commit 0a64aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/argon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ export class Argon implements HashDriverContract {
id: `argon2${this.#config.variant}`,
version: this.#config.version,
params: {
t: this.#config.iterations,
m: this.#config.memory,
t: this.#config.iterations,
p: this.#config.parallelism,
},
})
Expand Down

0 comments on commit 0a64aad

Please sign in to comment.