<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Yet Another Password Meter &#187; update</title>
	<atom:link href="http://blog.yetanotherpasswordmeter.com/tag/update/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yetanotherpasswordmeter.com</link>
	<description>Just another password meter and its blog.</description>
	<lastBuildDate>Tue, 09 Nov 2010 07:48:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A new version arrived &#8211; v1.1.0 is here</title>
		<link>http://blog.yetanotherpasswordmeter.com/2010/05/15/a-new-version-arrived-v1-1-0-is-here/</link>
		<comments>http://blog.yetanotherpasswordmeter.com/2010/05/15/a-new-version-arrived-v1-1-0-is-here/#comments</comments>
		<pubDate>Sat, 15 May 2010 20:19:37 +0000</pubDate>
		<dc:creator>Rene</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.yetanotherpasswordmeter.com/?p=22</guid>
		<description><![CDATA[Long time, no see! Well, the password meter was humming along and I did not find the time to do anything with or for it. It did what it should, besides some minor flaws.
One of the problems was the rating of long passwords. The longer the password got, the less points it got. Reason was [...]]]></description>
			<content:encoded><![CDATA[<p>Long time, no see! Well, the <a href="http://www.yetanotherpasswordmeter.com/">password meter</a> was humming along and I did not find the time to do anything with or for it. It did what it should, besides some minor flaws.</p>
<p>One of the problems was the rating of long passwords. The longer the password got, the less points it got. Reason was the redundancy which was applied all the time. Well, I fixed that&#8230; and wait, there is more&#8230;</p>
<h3>Minimum length increased</h3>
<p>The minimum length was increased to 6 characters. Five was too short. Therefore the entire score changed and your old password might now return different data.</p>
<h3>Redundancy Change</h3>
<p>Redundancy has only meaning when the password is equal or shorter the recommended length (right now 8 characters). The influence on longer passwords has been removed, therefore <em>11111kq!_()*/&amp;</em> is now about 42% and <em>11111kq!_()*/&amp;1111111111111</em> is 47%. It was 92% and 59% before. This directly leads to the next improvement.</p>
<p>I also adjusted the redundancy factor slightly.</p>
<h3>Significance</h3>
<p>Some legacy systems and some nasty software offer to input quite long passwords, but use at the end only the first characters. So we changed the algorithm to reflect that. The new value is named <em>significance</em>. The recommended password length, right now 8 characters, is most significant.</p>
<p>This first part of the password is analyzed separately again and influences the score the most. See the following examples and note how the bad first part influences the rating. This is of course a somewhat artificial assumption but it put makes things more secure.</p>
<ul>
<li>11111111 &#8211; 0%, obviously a garbage like password</li>
<li>aA-.85fG! &#8211; 100%, pretty nice, isn&#8217;t it?</li>
<li>aA-.85fG!11111111 &#8211; 100%, still nice of course</li>
<li>11111111aA-.85fG! &#8211; 23%, still a password with some meaning, but due to the usage of a first part that has a zero score, the overall rating does not come up that high</li>
</ul>
<h3>More colors</h3>
<p>The complexity indicator has now a color code to make the change more obvious and I pay my tribute to the people who do not want to read <img src='http://blog.yetanotherpasswordmeter.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Bottom line</h3>
<p>I am looking forward to your comments and suggestions. Feel free to use the tool often and extensively. Do not forget to tell friends about it. Educate them about good password usage.</p>
<p>If you find any strange things, let me know. If you find the tool to strict, let me now. Please include your arguments.</p>
<p style="text-align: left;"><em>&#8220;May the best password win!&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yetanotherpasswordmeter.com/2010/05/15/a-new-version-arrived-v1-1-0-is-here/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Update 1.0.1 &#8211; Formatting of decimals</title>
		<link>http://blog.yetanotherpasswordmeter.com/2009/01/02/update-101-formatting-of-decimals/</link>
		<comments>http://blog.yetanotherpasswordmeter.com/2009/01/02/update-101-formatting-of-decimals/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 07:59:41 +0000</pubDate>
		<dc:creator>Rene</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.yetanotherpasswordmeter.com/?p=8</guid>
		<description><![CDATA[We made a quick update to version 1.0.1. Users reported presentation problems due to numbers with a lot of decimals.
For the programmer in you: We fixed the formatting of float numbers and displaying only two decimal digits now. Function used number.toFixed(2).
]]></description>
			<content:encoded><![CDATA[<p>We made a quick update to version 1.0.1. Users reported presentation problems due to numbers with a lot of decimals.</p>
<p>For the programmer in you: We fixed the formatting of float numbers and displaying only two decimal digits now. Function used <em>number.toFixed(2)</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yetanotherpasswordmeter.com/2009/01/02/update-101-formatting-of-decimals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

