Changeset 927198
- Timestamp:
- 06/05/2014 03:24:14 PM (12 years ago)
- Location:
- wp-bcrypt/trunk
- Files:
-
- 1 edited
- 1 moved
-
readme.txt (modified) (3 diffs)
-
wp-bcrypt.php (moved) (moved from wp-bcrypt/trunk/wp_bcrypt.php) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-bcrypt/trunk/readme.txt
r927186 r927198 1 1 === Plugin Name === 2 2 Contributors: harrym 3 Tags: security 3 Tags: security, passwords 4 4 Requires at least: 3.4 5 Tested up to: 3. 46 Stable tag: 0.15 Tested up to: 3.9.1 6 Stable tag: 1.0.0 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 WPbcrypt switches WordPress's password hashes from MD5 to bcrypt, making it harder for them to be brute-forced if they are leaked.10 wp bcrypt switches WordPress's password hashes from MD5 to bcrypt, making it harder for them to be brute-forced if they are leaked. 11 11 12 12 == Description == … … 26 26 == Installation == 27 27 28 This section describes how to install the plugin and get it working. 29 30 e.g. 31 32 1. Upload the `wp_bcrypt` to the `/wp-content/plugins/` directory 28 1. Upload the `wp-bcrypt` directory to the `wp-content/plugins/` directory 33 29 1. Activate the plugin through the 'Plugins' menu in WordPress 34 30 … … 48 44 == Changelog == 49 45 50 = 0.1 = 46 = 1.0.1 = 47 * Readme improvements 48 49 = 1.0.0 = 51 50 * Initial release -
wp-bcrypt/trunk/wp-bcrypt.php
r927186 r927198 1 1 <?php 2 2 /** 3 * Plugin Name: WPbcrypt4 * Plugin URI: http:// dxw.com/wp-bcrypt5 * Description: WPbcrypt switches WordPress's password hashes from MD5 to bcrypt, making it harder for them to be brute-forced if they are leaked.3 * Plugin Name: wp-bcrypt 4 * Plugin URI: http://wordpress.org/plugins/wp-bcrypt/ 5 * Description: wp-bcrypt switches WordPress's password hashes from MD5 to bcrypt, making it harder for them to be brute-forced if they are leaked. 6 6 * Author: dxw 7 7 * Author URI: http://dxw.com
Note: See TracChangeset
for help on using the changeset viewer.