diff options
| author | Eric Biggers <ebiggers@google.com> | 2023-09-09 11:30:45 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2023-09-09 11:30:45 -0700 |
| commit | e663a3ee2287be77dcd44631b29147a1eddcb4f0 (patch) | |
| tree | 07f2f6d6cd79d6f892c11d7ab808ae0372d4444d /crypto/crypto_test.go | |
| parent | c999f0b04c526a85d061a7461c0e4211e94f9fb7 (diff) | |
Re-run 'make format' with latest version of gofmt
Diffstat (limited to 'crypto/crypto_test.go')
| -rw-r--r-- | crypto/crypto_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/crypto_test.go b/crypto/crypto_test.go index f98c643..1fa5a0c 100644 --- a/crypto/crypto_test.go +++ b/crypto/crypto_test.go @@ -64,7 +64,9 @@ func fakePassphraseKey() (*Key, error) { // Values for test cases pulled from argon2 command line tool. // To generate run: -// echo "password" | argon2 "aaaaaaaaaaaaaaaa" -id -t <t> -m <m> -p <p> -l 32 +// +// echo "password" | argon2 "aaaaaaaaaaaaaaaa" -id -t <t> -m <m> -p <p> -l 32 +// // where costs.Time = <t>, costs.Memory = 2^<m>, and costs.Parallelism = <p>. type hashTestCase struct { costs *metadata.HashingCosts |