<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 == WordPress On Rails
 
-The goal if this simple Gem is to provide a set of ActiveRecord objects 
+The goal of this simple Gem is to provide a set of ActiveRecord objects 
 that can manipulate a WordPress database. 
 
 == What's new in this release?
@@ -9,6 +9,8 @@ This is really just a set of objects right now. It needs to be expanded on befor
 
 == Installation/Usage
 
+WordPress Administrators must use PRE-2.5 credential hashing algorithm, which is less secure, if you want to be able to authenticate users
+in Rails. See http://wordpress.org/extend/plugins/md5-password-hashes/
 gem install wp_on_rails
 
 require 'wp_on_rails'
@@ -28,6 +30,7 @@ WordPress::Base.set_table_prefix('prefix_')
 - Relationships between tables are missing
 - Tests
 - Documentation
+- Implement PHPass and remove MD5 password hashing requirement
 
 == See Also
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -32,6 +32,13 @@ module WordPress
       @table_root = table
     end
     
+    # currently only supports md5 passwords - requires wp administrator
+    # to install this plugin - http://wordpress.org/extend/plugins/md5-password-hashes/
+    # should upgrade to match encryption w/PHPass
+    def hash_password
+      require 'digest/md5'
+      Digest::MD5.digest('foobar').unpack(&quot;H*&quot;)[0]
+    end
   end
   
   class Base &lt; ActiveRecord::Base</diff>
      <filename>lib/wp_on_rails.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>92cc99c8a3ec5ccaf1386af9d7e75f9dceb3472d</id>
    </parent>
  </parents>
  <author>
    <name>Chad DePue</name>
    <email>chad@inakanetworks.com</email>
  </author>
  <url>http://github.com/inaka/wp_on_rails/commit/d4a078117acdef8454dbce31cf606991c9f826ec</url>
  <id>d4a078117acdef8454dbce31cf606991c9f826ec</id>
  <committed-date>2008-12-26T07:47:15-08:00</committed-date>
  <authored-date>2008-12-26T07:47:15-08:00</authored-date>
  <message>md5 hashing requirement</message>
  <tree>6beeff8a8518affe80f6444a3225caf6076c304f</tree>
  <committer>
    <name>Chad DePue</name>
    <email>chad@inakanetworks.com</email>
  </committer>
</commit>
