{"id":36135,"date":"2015-05-04T01:12:38","date_gmt":"2015-05-04T01:12:38","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/strong-password-generator\/"},"modified":"2015-10-16T15:58:37","modified_gmt":"2015-10-16T15:58:37","slug":"strong-password-generator","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/strong-password-generator\/","author":1172341,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"0.3.0","stable_tag":"0.3.0","tested":"4.2.39","requires":"3.7","requires_php":"","requires_plugins":"","header_name":"Strong Password Generator","header_author":"Frankie Jarrett","header_description":"","assets_banners_color":"28c101","last_updated":"2015-10-16 15:58:37","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"http:\/\/frankiejarrett.com","rating":5,"author_block_rating":0,"active_installs":10,"downloads":1536,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"1"},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":"1152518","resolution":"128x128","location":"assets"},"icon-256x256.png":{"filename":"icon-256x256.png","revision":"1152518","resolution":"256x256","location":"assets"}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":"1152518","resolution":"1544x500","location":"assets"},"banner-772x250.png":{"filename":"banner-772x250.png","revision":"1152518","resolution":"772x250","location":"assets"}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["0.1.0","0.2.0","0.3.0"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1153163","resolution":"1","location":"assets"},"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1153163","resolution":"2","location":"assets"},"screenshot-3.png":{"filename":"screenshot-3.png","revision":"1153163","resolution":"3","location":"assets"}},"screenshots":{"1":"When choosing a password, users can optionally choose to have a strong password generated for them.","2":"The fields are filled in automatically and the user is prompted to save their new password.","3":"The strong password generator is also available when editing profiles."}},"plugin_section":[],"plugin_tags":[83,602,1932,8588,435],"plugin_category":[38,43,58],"plugin_contributors":[77890],"plugin_business_model":[],"class_list":["post-36135","plugin","type-plugin","status-closed","hentry","plugin_tags-admin","plugin_tags-login","plugin_tags-membership","plugin_tags-passwords","plugin_tags-profile","plugin_category-authentication","plugin_category-customization","plugin_category-user-management","plugin_contributors-fjarrett","plugin_committers-fjarrett"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/strong-password-generator_28c101.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/strong-password-generator\/assets\/screenshot-1.png?rev=1153163","caption":"When choosing a password, users can optionally choose to have a strong password generated for them."},{"src":"https:\/\/ps.w.org\/strong-password-generator\/assets\/screenshot-2.png?rev=1153163","caption":"The fields are filled in automatically and the user is prompted to save their new password."},{"src":"https:\/\/ps.w.org\/strong-password-generator\/assets\/screenshot-3.png?rev=1153163","caption":"The strong password generator is also available when editing profiles."}],"raw_content":"<!--section=description-->\n<p><strong>NOTE: THIS PLUGIN IS NO LONGER MAINTAINED<\/strong><\/p>\n\n<p>As of <a href=\"https:\/\/wordpress.org\/news\/2015\/08\/billie\/\">WordPress 4.3 \"Billie\"<\/a> strong passwords are now automatically generated.<\/p>\n\n\n\n<p>Strong passwords are one of the best defenses for maintaining a secure website.<\/p>\n\n<p>The <strong>Password Generator<\/strong> button makes it easy for your users to choose a secure password.<\/p>\n\n<p>This plugin utilizes the <a href=\"https:\/\/github.com\/bermi\/password-generator\">password-generator<\/a> JavaScript library under the MIT license.<\/p>\n\n<p><strong>Development of this plugin is done <a href=\"https:\/\/github.com\/fjarrett\/strong-password-generator\">on GitHub<\/a>. Pull requests welcome. Please see <a href=\"https:\/\/github.com\/fjarrett\/strong-password-generator\/issues\">issues reported<\/a> there before going to the plugin forum.<\/strong><\/p>\n\n<!--section=faq-->\n<dl>\n<dt>How can I change the default generated password length?<\/dt>\n<dd><p>The default password length is <code>20<\/code> and can be overridden with a filter. Simply add this hook to your theme's <code>functions.php<\/code> file or as an <a href=\"http:\/\/codex.wordpress.org\/Must_Use_Plugins\">MU plugin<\/a>:<\/p>\n\n<pre>\nadd_filter( 'spg_default_password_length', function() { return 12; } );\n<\/pre><\/dd>\n<dt>How can I change the minimum required generated password length?<\/dt>\n<dd><p>The default minimum password length is <code>7<\/code> and can be overridden with a filter. Simply add this hook to your theme's <code>functions.php<\/code> file or as an <a href=\"http:\/\/codex.wordpress.org\/Must_Use_Plugins\">MU plugin<\/a>:<\/p>\n\n<pre>\nadd_filter( 'spg_min_password_length', function() { return 8; } );\n<\/pre>\n\n<p>Note: This setting only affects the minimum length of <em>generated passwords<\/em>, not passwords manually created by users.<\/p><\/dd>\n<dt>How can I change the maximum generated password length allowed?<\/dt>\n<dd><p>The default maximum password length is <code>32<\/code> and can be overridden with a filter. Simply add this hook to your theme's <code>functions.php<\/code> file or as an <a href=\"http:\/\/codex.wordpress.org\/Must_Use_Plugins\">MU plugin<\/a>:<\/p>\n\n<pre>\nadd_filter( 'spg_max_password_length', function() { return 50; } );\n<\/pre>\n\n<p>Note: This setting only affects the maximum length of <em>generated passwords<\/em>, not passwords manually created by users.<\/p><\/dd>\n<dt>How can I generate passwords that are easier to memorize?<\/dt>\n<dd><p>The default mode for password generation is non-memorable (alphanumeric + special characters), but this too can be overridden with a filter so that generated passwords are purely alphabetic, making them easier for users to memorize. Simply add this hook to your theme's <code>functions.php<\/code> file or as an <a href=\"http:\/\/codex.wordpress.org\/Must_Use_Plugins\">MU plugin<\/a>:<\/p>\n\n<pre>\nadd_filter( 'spg_allow_memorable_passwords', '__return_true' );\n<\/pre><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>0.3.0 - May 5, 2015<\/h4>\n\n<ul>\n<li>Fix: JS bug preventing manual passwords from being set<\/li>\n<li>Tweak: Use hooks to insert generator markup instead of JS<\/li>\n<li>Tweak: Improved CSS styling in various views<\/li>\n<\/ul>\n\n<p>Props <a href=\"https:\/\/github.com\/fjarrett\">@fjarrett<\/a><\/p>\n\n<h4>0.2.0 - May 4, 2015<\/h4>\n\n<ul>\n<li>New: Add slider for custom password length control, retire alert window<\/li>\n<\/ul>\n\n<p>Props <a href=\"https:\/\/github.com\/fjarrett\">@fjarrett<\/a><\/p>\n\n<h4>0.1.0 - May 4, 2015<\/h4>\n\n<ul>\n<li>Initial release<\/li>\n<\/ul>\n\n<p>Props <a href=\"https:\/\/github.com\/fjarrett\">@fjarrett<\/a><\/p>","raw_excerpt":"Encourage the use of strong passwords by helping users generate them easily.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/36135","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=36135"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/fjarrett"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=36135"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=36135"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=36135"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=36135"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=36135"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=36135"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}