]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/class-phpass.php
Wordpress 2.9.2-scripts
[autoinstalls/wordpress.git] / wp-includes / class-phpass.php
index c964b09b10e41834a39afe87431e647ceba7d5b0..93f4536cfbe5fa695fa3f4f4c23d119e776a3ce7 100644 (file)
@@ -7,20 +7,12 @@
  * @link http://www.openwall.com/phpass/
  */
 
-#
-# Portable PHP password hashing framework.
-#
-# Version 0.1 / genuine.
 #
 # Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in
 # the public domain.
 #
 # There's absolutely no warranty.
 #
-# The homepage URL for this framework is:
-#
-#      http://www.openwall.com/phpass/
-#
 # Please be sure to update the Version line if you edit this file in any way.
 # It is suggested that you leave the main version number intact, but indicate
 # your project name (after the slash) and add your own revision information.
 # Obviously, since this code is in the public domain, the above are not
 # requirements (there can be none), but merely suggestions.
 #
+
+/**
+ * Portable PHP password hashing framework.
+ *
+ * @package phpass
+ * @version 0.1 / genuine
+ * @link http://www.openwall.com/phpass/
+ * @since 2.5
+ */
 class PasswordHash {
        var $itoa64;
        var $iteration_count_log2;
@@ -49,7 +50,7 @@ class PasswordHash {
                $this->portable_hashes = $portable_hashes;
 
                $this->random_state = microtime() . (function_exists('getmypid') ? getmypid() : '') . uniqid(rand(), TRUE);
-       
+
        }
 
        function get_random_bytes($count)