Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Apr 9, 2020
1 parent cdc1336 commit f7362eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class BrokenBcryptKeyStretcher implements KeyStretchingFunction {
private static final int BCRYPT_MIN_ROUNDS = 8;
private static final int BCRYPT_DEFAULT_ROUNDS = 12;
private static final BCrypt.Version CUSTOM_LEGACY_VERSION = new BCrypt.Version(new byte[] {0x32, 0x61},
true, true, new CustomFormatter(new Radix64Encoder.Default(), StandardCharsets.UTF_8), BCrypt.Version.VERSION_2A.parser);
true, true, BCrypt.Version.DEFAULT_MAX_PW_LENGTH_BYTE, new CustomFormatter(new Radix64Encoder.Default(), StandardCharsets.UTF_8), BCrypt.Version.VERSION_2A.parser);
private final int iterations;

/**
Expand Down

0 comments on commit f7362eb

Please sign in to comment.