Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Help ASAP IlluminaCMS-->UberCMS?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Khalil" data-source="post: 226468" data-attributes="member: 9938"><p>What hashes? Uber uses md5, and so does Illumina.</p><p> </p><p>Uber 2.0:</p><p>[PHP]function UserHash($password, $username) {</p><p> return sha1(md5($password) . strtolower($username));</p><p>}[/PHP]</p><p> </p><p> </p><p>Illumina:</p><p>[PHP]</p><p>public function userHash($password, $username) {</p><p> global $light;</p><p> if($light->hashing_method == "Normal") {</p><p> return sha1(md5($password) . strtolower($username));</p><p> } else if($light->hashing_method == "MD5") {</p><p> return md5($password);</p><p> }</p><p>}</p><p>[/PHP]</p><p> </p><p>Is that what you were asking about?</p></blockquote><p></p>
[QUOTE="Khalil, post: 226468, member: 9938"] What hashes? Uber uses md5, and so does Illumina. Uber 2.0: [PHP]function UserHash($password, $username) { return sha1(md5($password) . strtolower($username)); }[/PHP] Illumina: [PHP] public function userHash($password, $username) { global $light; if($light->hashing_method == "Normal") { return sha1(md5($password) . strtolower($username)); } else if($light->hashing_method == "MD5") { return md5($password); } } [/PHP] Is that what you were asking about? [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Help ASAP IlluminaCMS-->UberCMS?
Top