Skip to content

Commit

Permalink
test(argon2id):adding test to verify that changing parameters order d…
Browse files Browse the repository at this point in the history
…oes not break old hashes with old order
  • Loading branch information
Benjamin-htr committed Sep 16, 2024
1 parent 0a64aad commit 825118f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions tests/drivers/argon2.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,42 @@ test.group('argon | verify', () => {
assert.isTrue(await argon.verify(hash, 'password'))
})

test('should verify a precomputed hash with old parameters order', async ({ assert }) => {
// Precomputed hash for "password"
const hash =
'$argon2id$v=19$t=4,m=65536,p=1$oNZeAqWynNAkeJUGcuNMSw$O47kb/ayyV1VWoQLDpI/IkDOYUCF/Ctqzxys4cyEeGc'

const argon = new Argon({
variant: 'id',
iterations: 4,
memory: 65536,
parallelism: 1,
version: 19,
saltSize: 16,
hashLength: 32,
})

assert.isTrue(await argon.verify(hash, 'test-124_arg'))
})

test('should verify a precomputed hash with new parameters order', async ({ assert }) => {
// Precomputed hash for "password"
const hash =
'$argon2id$v=19$m=65536,t=4,p=1$oNZeAqWynNAkeJUGcuNMSw$O47kb/ayyV1VWoQLDpI/IkDOYUCF/Ctqzxys4cyEeGc'

const argon = new Argon({
variant: 'id',
iterations: 4,
memory: 65536,
parallelism: 1,
version: 19,
saltSize: 16,
hashLength: 32,
})

assert.isTrue(await argon.verify(hash, 'test-124_arg'))
})

test('fail verification when value is formatted as phc string', async ({ assert }) => {
const argon = new Argon({
variant: 'id',
Expand Down

0 comments on commit 825118f

Please sign in to comment.