Skip to content

Commit

Permalink
allow ssha256
Browse files Browse the repository at this point in the history
  • Loading branch information
albertzaharovits committed Sep 13, 2024
1 parent b1dfe28 commit 76a041b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ public static List<String> getAvailableAlgoStoredHash() {
return Arrays.stream(Hasher.values())
.map(Hasher::name)
.map(name -> name.toLowerCase(Locale.ROOT))
.filter(name -> (name.startsWith("pbkdf2") || name.startsWith("bcrypt")))
.filter(name -> (name.startsWith("pbkdf2") || name.startsWith("bcrypt") || "ssha256".equals(name)))
.collect(Collectors.toList());
}

Expand Down

0 comments on commit 76a041b

Please sign in to comment.