Method: Facebooker::User.hash_email

Defined in:
lib/facebooker/models/user.rb

.hash_email(email) ⇒ Object



694
695
696
697
698
699
# File 'lib/facebooker/models/user.rb', line 694

def self.hash_email(email)
  email = email.downcase.strip
  crc=Zlib.crc32(email)
  md5=Digest::MD5.hexdigest(email)
  "#{crc}_#{md5}"
end