Skip to content

Commit

Permalink
#6 attempt to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMDoerner committed Sep 9, 2023
1 parent bebf5ef commit be82909
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/t_argon2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ suite "Argon2 specific":
# Given
let argonCommand = fmt"echo -n {password} | argon2 {saltStr} -v 13 -id -p 1 -k {memoryLimitInKiB} -t {iterations} -l {hashLength} -e"
let cliEncodedHash = execCmdEx(argonCommand).output
echo cliEncodedHash.split('$') # TODO: Remove
var cliHash: Hash = cliEncodedHash.split('$')[^1].decode()

# When
Expand Down

0 comments on commit be82909

Please sign in to comment.