What do you think about this?
Im not pro but i think im insane in coding php haha....
try this... 32 character output for encrypting password..
output like this.......
please just drag your comments here......
Added after 6 minutes:
if doesnt work just remove the
int he function
Im not pro but i think im insane in coding php haha....
try this... 32 character output for encrypting password..
PHP Code:
<?php
/*
Jerson M. Guerrero
Philippines
Jerson Super Encryption
Made in the Philippines
(Please dont removed this copyrights)
Note: PHP 5 >= 5.1.2
*/
function jersonph1($str) {
$str = base64_encode($str);
$str = base64_encode($str);
$str = hash("sha512",$str);
$str = base64_encode($str);
$str = sha1($str);
$str = sha1($str);
$str = sha1($str);
$str = base64_encode($str);
$str = sha1($str);
$str = base64_encode($str);
$str = sha1($str);
$str = sha1($str);
$str = sha1($str);
$str = md5($str);
$str = md5($str);
return $str;
}
?>
PHP Code:
$password = "yourpassword";
jersonph1($password);
Added after 6 minutes:
if doesnt work just remove the
$str = hash("sha512",$str);
Comment