Skip to content

Commit

Permalink
Merge pull request #321 from bittorf/fix-spelling-mistakes
Browse files Browse the repository at this point in the history
fix 3 spelling mistakes
  • Loading branch information
veorq authored Jun 25, 2021
2 parents 16d3df6 + c985330 commit f57e61e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ There are many additional parameters, but we will highlight three of them here.
https://en.wikipedia.org/wiki/Hash-based_message_authentication_code).
This allows a secret key to be input at hashing time (from some external
location) and be folded into the value of the hash. This means that even if
your salts and hashes are compromized, an attacker cannot brute-force to find
your salts and hashes are compromised, an attacker cannot brute-force to find
the password without the key.

2. The `ad` parameter, which is used to fold any additional data into the hash
Expand All @@ -116,7 +116,7 @@ There are many additional parameters, but we will highlight three of them here.
key only usable at hashing time. The `ad` is for any other data.

3. The `flags` parameter, which determines which memory should be securely
erased. This is useful if you want to securly delete the `pwd` or `secret`
erased. This is useful if you want to securely delete the `pwd` or `secret`
fields right after they are used. To do this set `flags` to either
`ARGON2_FLAG_CLEAR_PASSWORD` or `ARGON2_FLAG_CLEAR_SECRET`. To change how
internal memory is cleared, change the global flag
Expand Down
2 changes: 1 addition & 1 deletion libargon2.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## - replace @UPSTREAM_VER@ with current version, e.g. '20160406'
## - replace @HOST_MULTIARCH@ with target arch lib, e.g. 'lib', 'lib/x86_64-linux-gnu' or 'lib64'
## - replace @PREFIX@ with install path, e.g. '/usr', '/usr/local', '/usr/pkg'
## - replace @INCLUDE@ with incluse path, e.g. 'include' or 'include/argon2'
## - replace @INCLUDE@ with include path, e.g. 'include' or 'include/argon2'

prefix=@PREFIX@
exec_prefix=${prefix}
Expand Down

0 comments on commit f57e61e

Please sign in to comment.