<?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>Ladysign Dev Blog &#187; social security number</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/social-security-number/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ladysign-apps.com/blog</link>
	<description>Girls can code.</description>
	<lastBuildDate>Mon, 12 Dec 2011 16:58:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Social Security Number generator</title>
		<link>http://www.ladysign-apps.com/blog/code/generators/social-security-number-generator/</link>
		<comments>http://www.ladysign-apps.com/blog/code/generators/social-security-number-generator/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 10:08:00 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[generators]]></category>
		<category><![CDATA[11-digit-check]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[social security number]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=184</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Some computer software contain social security number (sofi nummer) checks for making sure that the user fills in the cor[......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/generators/social-security-number-generator/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Some computer software contain social security number (sofi nummer) checks for making sure that the user fills in the correct social security number. The social security number can be tested by a similar 11-digit-check, which is used a lot for testing electronic payment transfers (on 9 and 10 digit bank account numbers), to check if they are valid.</p>
<p>The 11-digit-check multiplies every number with it&#8217;s position, adds these numbers up and divides the result by 11. The result should be > 0.</p>
<p>For example, bank account number: 73.61.60.221 can be calculated:</p>
<pre class="brush: jscript; title: ;">
   (7 Ã—9 + 3 Ã—8 + 6 Ã—7 + 1 Ã—6 + 6 Ã—5 + 0 Ã—4 + 2 Ã—3 + 2 Ã—2 + 1 Ã—1) / 11 = 16
</pre>
<p>For social security numbers the formula is a bit different.<br />
The last number will be multiplied by position -1 instead of 1.</p>
<p>Now of course tools like this do already exist:<br />
Check the following URL:<br />
<a href="http://www.wilmans.com/sofinummer/index.html" target="_blank">http://www.wilmans.com/sofinummer/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/generators/social-security-number-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

