<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>jadecell.org:~$ ./blogStart.sh &#187; Security</title>
	<atom:link href="http://blog.jadecell.org/wp/category/programming/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jadecell.org/wp</link>
	<description>Experiences in *nix &#038; Tech</description>
	<lastBuildDate>Wed, 19 May 2010 00:01:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>Copyright &#xA9; 2010 jadecell.org:~$ ./blogStart.sh </copyright>
		<managingEditor>admin@blog.jadecell.org ()</managingEditor>
		<webMaster>admin@blog.jadecell.org ()</webMaster>
		<category>posts</category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Experiences in *nix  Tech</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>admin@blog.jadecell.org</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://blog.jadecell.org/wp/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://blog.jadecell.org/wp/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>jadecell.org:~$ ./blogStart.sh</title>
			<link>http://blog.jadecell.org/wp</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Quick Password Policy Function in PHP</title>
		<link>http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/</link>
		<comments>http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 00:05:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://blog.jadecell.org/wp/?p=60</guid>
		<description><![CDATA[Just a quick password policy function in php. Didn&#8217;t want to have to dig around to figure out how to do it again, so I&#8217;m just posting it here

/* * * * * * * * * * * * * * * * * * * * * * * * *
Password Policy requires
&#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick password policy function in php. Didn&#8217;t want to have to dig around to figure out how to do it again, so I&#8217;m just posting it here</p>
<blockquote><p>
/* * * * * * * * * * * * * * * * * * * * * * * * *<br />
Password Policy requires<br />
&#8211; at least 8 characters<br />
&#8211; at least 1 lower case<br />
&#8211; at least 1 upper case<br />
&#8211; at least 1 digit<br />
* * * * * * * * * * * * * * * * * * * * * * * * * /<br />
function pwdPolicy($pwd){<br />
&nbsp;&nbsp;&nbsp;$policy = &#8220;/^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$/&#8221;;<br />
&nbsp;&nbsp;&nbsp;if(preg_match($policy, $pwd, $matches)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return true;<br />
&nbsp;&nbsp;&nbsp;} else return false;<br />
}</p></blockquote>
<p><map name='google_ad_map_60_03357ac322143b8f'>
<area shape='rect' href="http://blog.jadecell.org/wp/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ltYWdlYWRzLmdvb2dsZWFkc2VydmljZXMuY29tL3BhZ2VhZC9pbWdjbGljay82MD9wb3M9MA==" coords='1,2,367,28' />
<area shape='rect' href="http://blog.jadecell.org/wp/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlcnZpY2VzLmdvb2dsZS5jb20vZmVlZGJhY2svYWJn" coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_60_03357ac322143b8f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=60&amp;url= http%3A%2F%2Fblog.jadecell.org%2Fwp%2F2008%2F12%2F17%2Fquick-password-policy-function-in-php%2F' /></p> <img src="http://blog.jadecell.org/wp/wp-content/plugins/feed-statistics.php?view=1&post_id=60" width="1" height="1" style="display: none;" /><hr />
<p><small>&copy; admin for <a href="http://blog.jadecell.org/wp">jadecell.org:~$ ./blogStart.sh</a>, 2008. |
<a href="http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/">Permalink</a> |
<a href="http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/&amp;title=Quick Password Policy Function in PHP">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jadecell.org/wp/2008/12/17/quick-password-policy-function-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
