Skip to content

Commit

Permalink
README.md: fix typo "nrounds" => "rounds"
Browse files Browse the repository at this point in the history
Update #220
  • Loading branch information
ebiggers committed May 13, 2020
1 parent 1fbde02 commit c707e50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@ passphrase). To do this, find the line in `/etc/pam.d/passwd` that looks like:
password required pam_unix.so sha512 shadow nullok
```

Append `nrounds=1000000` (or another number of your choice; the goal is to make
Append `rounds=1000000` (or another number of your choice; the goal is to make
the passphrase hashing take about 1 second, similar to `fscrypt`'s default):
```
password required pam_unix.so sha512 shadow nullok nrounds=1000000
password required pam_unix.so sha512 shadow nullok rounds=1000000
```

Then, change your login passphrase to a new, strong passphrase:
Expand All @@ -320,7 +320,7 @@ passwd
If you'd like to keep the same login passphrase (not recommended, as the old
passphrase hash may still be recoverable from disk), then instead run
`sudo passwd $USER` and enter your existing passphrase. This re-hashes your
existing passphrase with the new `nrounds`.
existing passphrase with the new `rounds`.

### Enabling the PAM module

Expand Down

0 comments on commit c707e50

Please sign in to comment.