Skip to content

Commit

Permalink
editing
Browse files Browse the repository at this point in the history
  • Loading branch information
copiousfreetime committed Jan 17, 2024
1 parent d2d951a commit c4177d5
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,18 @@ Additionally, you can access all the functionality of *htdigest-ruby* and
Out of the box, `htauth` supports the classic algorithms that ship with Apache
`htpasswd`.

- Okay to use:
- md5
- sha1
- bcrypt

- Please **Do Not use** available only for backwards compatibility with `htpasswd`
- plaintext
- crypt

- Suported, but not default
- argon2 -- to use this add `gem 'argon2'` to your `Gemfile`. `argon2` will
- Built in
- Generally accepted
- MD5 (default for compatibilty reasons)
- bcrypt (probably the better choice)

- **Not Recommended** - available only for backwards compatibility with `htpasswd`
- SHA1
- crypt
- plaintext

- Available with the installation of additional libraries:
- argon2 - to use, add `gem 'argon2'` to your `Gemfile`. `argon2` will
now be a valid algorithm to use in `HTAuth::PasswdFile` API.

## CREDITS
Expand Down

0 comments on commit c4177d5

Please sign in to comment.