summaryrefslogtreecommitdiff
path: root/lib/trocla/formats/pgsql.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-07-27 18:43:55 +0200
committermh <mh@immerda.ch>2011-07-27 18:43:55 +0200
commit9146a541ff96b92f4f14c6292307b68dc4673097 (patch)
tree3637ab49056565fad3566d78698634c2a6ab7265 /lib/trocla/formats/pgsql.rb
initial release of trocla
Diffstat (limited to 'lib/trocla/formats/pgsql.rb')
-rw-r--r--lib/trocla/formats/pgsql.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/trocla/formats/pgsql.rb b/lib/trocla/formats/pgsql.rb
new file mode 100644
index 0000000..05c23ce
--- /dev/null
+++ b/lib/trocla/formats/pgsql.rb
@@ -0,0 +1,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 \ No newline at end of file