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...
Hildegardhildegarde asked 28/9, 2015 at 10:31

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

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...
Tridactyl asked 13/11, 2014 at 9:45

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...
Majoriemajority asked 27/8, 2015 at 19:28

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...
Subacid asked 15/3, 2012 at 14:58

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...
Extractor asked 2/10, 2011 at 14:21

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 ...
Illegitimacy asked 7/3, 2009 at 23:34
1

© 2022 - 2024 — McMap. All rights reserved.