Questions tagged [ssha]

SSHA is a salted variant of the SHA hashing algorithm. It follows the same naming convention. For example: SSHA256(data, salt) = SHA256(data + salt) + salt. It is generally used for password hashing in the realm of LDAP.

19 questions
0
votes
0 answers

Generate SSHA password in PHP to use ldap_compare for OpenLDAP SSHA passwords

I have an OpenLDAP user with SSHA password. I want to compare his SSHA encoded password with a password specified at php webform. Unfortunately ldap_compare can only compare plain text passwords: $check = ldap_compare($ldapconn, $dn, $ldap_password,…
Tass Mark
  • 337
  • 1
  • 2
  • 14
0
votes
1 answer

OpenLDAP encryption storage Schema

I am using OpenLDAP 2.4.38 windows version. Apache DS for ldap explorer. Configured password encryption mechanism SSHA in slapd.conf of OpenLDAP. password-hash {SSHA} Now when I change password using JNDI and check in Apache DS it shows…
0
votes
2 answers

JCE - Java 7...?

I've installed JDK 7. Which already contains the following JARs: local_policy US_export_policy But when I start my application, I was facing JCE error. So I googled and downloaded JDK 7 JCE from here. My doubt is, when JDK 7 already has JCE JARs,…
Gokul Nath KP
  • 15,485
  • 24
  • 88
  • 126
0
votes
1 answer

Where does hashing take place with a webclient and LDAP

We are currently implementing several web application that requires the user to create a user login that will be authenticated through LDAP calls. The LDAP server and user accounts will be shared by all the applications and the user's credentials…
Sevil Natas
  • 115
  • 1
  • 1
  • 5
1
2