Sha256: 8f3c182a5cf5d8c737a6140a790e0df73457ab010a6f859ad044f700d96d3acf
Contents?: true
Size: 691 Bytes
Versions: 1
Compression:
Stored size: 691 Bytes
Contents
require 'sha1' require 'base64' module Ldap class Digest # method from openldap faq which produces the userPassword attribute # for the ldap # @param secret String the password # @param salt String the salt for the password digester # @return the encoded password/salt def self.ssha(secret, salt) (salt.empty? ? "{SHA}": "{SSHA}") + Base64.encode64(::Digest::SHA1.digest(secret + salt) + salt).gsub(/\n/, '') end # method from openldap faq which produces the userPassword attribute # for the ldap # @param secret String the password # @return the encoded password def self.sha(secret) ssha(secret, "") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dm-ldap-adapter-0.4.2 | lib/ldap/digest.rb |