summaryrefslogtreecommitdiff
path: root/lib/trocla/formats/pgsql.rb
blob: 05c23ce40ad62a0002530644aeecfd37873bef9c (plain)
1
2
3
4
5
6
7
class Trocla::Formats::Pgsql
  require 'digest/md5'
  def format(plain_password,options={})
    raise "You need pass the username in the options for this format" unless options['username'] 
    "md5" + Digest::MD5.hexdigest(plain_password + options['username'])
  end
end