jBCrypt icon indicating copy to clipboard operation
jBCrypt copied to clipboard

bcrypt for Java

Results 5 jBCrypt issues
Sort by recently updated
recently updated
newest added

jBCrypt is not compatible with bCrypt hashes generated by other implementations, e.g. PHP or https://bcrypt-generator.com/ Caused by: java.lang.IllegalArgumentException: Invalid salt revision at org.mindrot.jbcrypt.BCrypt.hashpw(BCrypt.java:665) at org.mindrot.jbcrypt.BCrypt.checkpw(BCrypt.java:764) e.g. "test" might be hashed...

Gradle file looks like this: ``` dependencies { compile group: 'org.mindrot', name: 'jbcrypt', version: '0.4' ... } ``` Kotlin file where import error occurs looks like this: ``` ... import...

Hi @djmdjm, checking your site it seems the last release is 0.4 but the version in the java file says 0.2.

``` % ant Buildfile: /Users/markbucciarelli/src/github/jBCrypt/build.xml init: build: [javac] build.xml:20: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 1 source file to /Users/markbucciarelli/src/github/jBCrypt/build...

This project comes up high in search results but bcrypt.io appears to be dead. The Java version cannot verify hashes made with the Node version and there are issues from...