Hash « Security « Spring Q&A





1. Spring Security DB Authentication w/Hibernate and hashed passwords?    stackoverflow.com

I'm trying to set up spring security 3 to authenticate users against my hibernate 3 database. I'm storing only sha1 hashes of the passwords in the database (not plaintext). I've looked at ...

2. Linux command line SHA-256 hash different from online tools?    stackoverflow.com

I was looking for a quick way to compute the SHA-256 hash of a password so I could upload some test data into a database that we are using Spring Security ...

3. Hashing and Salting Passwords with Spring Security 3    stackoverflow.com

How can I hash passwords and salt them with Spring Security 3?

4. Spring Security 3 Hash Password Encoders    stackoverflow.com

I have an application uses Spring Security 3 application. There are some choices for hash:

<password-encoder hash="many options">
Which one is more secure one and what are the advantages/disadvantages of it over others? ...

5. User password change, hashing unencoded passwords    forum.springsource.org

User password change, hashing unencoded passwords Hi, Is there a way to get a list of all users in the security database table 'users' from the Spring API instead of querying ...

6. Passwords: secure transport and hashing    forum.springsource.org

Passwords: secure transport and hashing The system I'm developing requires two entry points into the back end: an admin web app (included in the WAR with the back end) and SOAP-based ...

7. hash password in user registration    forum.springsource.org

Hi, newbie here. I have registration.jsp use for account creation. Question is how can I make the password that the user created to be in hash (md5 or salt) and will ...