Skip to content

Commit

Permalink
Fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Apr 19, 2020
1 parent 4539970 commit 75d829a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -812,6 +812,7 @@ private Version(byte[] versionIdentifier, BCryptFormatter formatter, BCryptParse
* @param appendNullTerminator as defined in $2a$+ a null terminator is appended to the password, pass false if you want avoid this
* @param allowedMaxPwLength the max allowed length of password in bcrypt, longer than that {@link LongPasswordStrategy} will be activated
* @param formatter the formatter responsible for formatting the out hash message digest
* @param parser responsible for parsing the message format
*/
public Version(byte[] versionIdentifier, boolean useOnly23bytesForHash, boolean appendNullTerminator, int allowedMaxPwLength, BCryptFormatter formatter, BCryptParser parser) {
this.versionIdentifier = versionIdentifier;
Expand Down
Expand Up @@ -17,8 +17,7 @@
* <li>salt (decoded)</li>
* <li>hash (decoded)</li>
* </ul>
* <p>
* <p>
*
* see: {@link BCryptFormatter}
* see: https://passlib.readthedocs.io/en/stable/modular_crypt_format.html
*/
Expand Down

0 comments on commit 75d829a

Please sign in to comment.