jbcrypt Questions
3
Solved
I'm using jbcrypt to hash passwords in a project. Performance is about 500 ms when validating passwords on the hardware I am using (log_rounds set to 12).
However, after a while with regular use th...
Sansen asked 5/2, 2014 at 16:51
1
In our web-application, we use jBcrypt for hashing passwords. We use 13 log_rounds when hashing the password.
Normally, BCrypt.checkpw() takes about 1 second. But from time to time (after a few da...
10
Solved
I'm trying to implement authentication using BCrypt, in my Play 2.1. Java application, but I'm getting Invalid salt version exception when I'm trying to authenticate the user.
This is my stack tra...
Anabas asked 10/5, 2013 at 9:0
1
Solved
Why can't Gradle resolve org.connectbot.jbcrypt:jbcrypt:1.0.0 from the Maven Central Repository?
I'm using Gradle 6.9 and here is my build.gradle file:
plugins {
id "groovy"
id "java"
}
group "com.matthiasdenu"
version "1.0-SNAPSHOT"
repositories {
...
Phocine asked 3/8, 2021 at 21:53
2
Solved
I am working on web application project in Spring Hibernate MVC. I am storing encoded passwords in a database using Bcrypt algorithm in Spring security.
Now I want to get that encoded password to b...
2
Does the Apache Shiro Authentication Framework support the use of the bCrypt password hashing algorithm? If not, is there a way to get it working with Shiro?
Are there any other Authentication fra...
1
I am having trouble getting a plaintext password and a previous hash to match using BCrypt's checkpw(plaintextpw, previoushash) method.
In a register servlet I take the entered password, hash it u...
1
Solved
I am using the jBCrypt Library to hash user passwords when they register using my app.
I am using the basic hash function, with a salt, like so:
String pass = BCrypt.hashpw(rawPass, BCrypt.gensal...
1
Solved
After looking into a bug in the original jBCrypt v0.1 C# port: BCrypt.net (Related Question). I decided to compare the new jBCrypt code against the old C# port to look for discrepancies and potenti...
Dizen asked 8/2, 2010 at 16:33
3
Solved
I'm planning to use jBCrypt for password hashing in a new web application, as it is supposed to be the best from what I've read. As I haven't used it before I'm looking into if there is any reason ...
1
© 2022 - 2024 — McMap. All rights reserved.