Class: Trocla::Formats::Pgsql
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
expensive, #expensive?, expensive?, #initialize, #render
Constructor Details
This class inherits a constructor from Trocla::Formats::Base
Instance Method Details
#format(plain_password, options = {}) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/trocla/formats/pgsql.rb', line 5 def format(plain_password, = {}) encode = (['encode'] || 'sha256') case encode when 'md5' raise 'You need pass the username as an option to use this format' unless ['username'] 'md5' + Digest::MD5.hexdigest(plain_password + ['username']) when 'sha256' pg_sha256(plain_password) else raise 'Unkmow encode %s for pgsql password' % [encode] end end |