add method

This commit is contained in:
Looly
2020-11-26 14:42:13 +08:00
parent 4cc276e665
commit 162c080e5a
3 changed files with 25 additions and 55 deletions

View File

@@ -179,7 +179,7 @@ public class BCrypt {
private static byte char64(char x) {
if ((int) x > index_64.length)
return -1;
return index_64[(int) x];
return index_64[x];
}
/**