Simplex Password encrypter Beta

Status
Not open for further replies.

xifyhosting

Active Member
35
2011
9
0
Hello,

I'm in the middle of coding the API for people to use as i dont want this source getting out and making it easier to crack.

DEMO: http://lunosolutions.com/encryption/

I'm not fully tested not tested for collisions yet but can you also see if you can crack this one please:
15caf203f8d935c5d661692452f7317616c4d0516mfd45m2614afdc5c21965amfa7388cd

That's a password I just made so if you can crack it i do major changes. I would also love feedback and improvements

Regards,
Jordan
 
5 comments
Nice....
i just made a password. can any one crack it also....:p

Nope :) thats why i was asking someone to test it

The demo link now show how the API works. you can use json or xml format

---------- Post added at 10:52 PM ---------- Previous post was at 06:14 PM ----------

Code:
<?php
function sxp($password) {
$data = array(
		'password' => $password,
		'format' => 'Plain',

        );

$ch = curl_init("http://lunosolutions.com/encryption/api.php");
curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6'); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POST, TRUE);
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
$password = curl_exec($ch);  
curl_close($ch);  
return $password;
}
?>

changed the password to 79char and the above code is the api system
 
Last edited:
Status
Not open for further replies.
Back
Top