<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Password Generator</title>
		<link>https://www.cotonti.com</link>
		<description>Last topic posts</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Thu, 30 Apr 2026 16:05:52 -0000</pubDate>

		<item>
			<title>Kilandor</title>
			<description><![CDATA[The password that is stored is just a pure MD5 hash of a string.<br />
<br />
sed_unique is just something you can use to create a MD5 Hash, which can be used for something.<br />
<br />
The example above will just create a random password. Which yes then you can use that as the &quot;password&quot; for the char.<br />
<br />
<div class="highlight"><pre class="php">
$randpass = sed_unique(16); // 16 is password length
$passhash = md5($randpass);
</pre></div>
<br />
$randpass is what you would login with<br />
$passhash is what would be stored in the SQL field<br />
<br />
If need help with how a normal registration goes, just checkout users.register.inc.php starting line 105~<br />
<br />
You can use those 2 queries to create users. Just put them in a default group and not the inactive group.]]></description>
			<pubDate>Fri, 16 Apr 2010 20:05:40 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5531&d=0#post24140]]></link>
		</item>
		<item>
			<title>zboy812</title>
			<description><![CDATA[Thank you trustmaster, i did find some MD5/Salt functions in the common.php i will try to use them and post back my results.]]></description>
			<pubDate>Fri, 16 Apr 2010 11:37:02 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5531&d=0#post24130]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Use this function:<br />
<div class="highlight"><pre class="php">$randpass = sed_unique(16); // 16 is password length</pre></div>]]></description>
			<pubDate>Thu, 15 Apr 2010 16:01:06 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5531&d=0#post24118]]></link>
		</item>
		<item>
			<title>zboy812</title>
			<description><![CDATA[Hello, i am making a plugin to batch create users in my cotonti system. <br />
<br />
I want to add about 10,000 users to my system from a list of names, for example; Sara, John, Mike, John.....<br />
<br />
I need to encrypt the passwords for the accounts to work. Where can i find the the password generator in the core? <br />
<br />
Thank you!]]></description>
			<pubDate>Thu, 15 Apr 2010 02:05:37 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=5531&d=0#post24111]]></link>
		</item>
	</channel>
</rss>