Created
April 29, 2011 13:32
-
-
Save felquis/948299 to your computer and use it in GitHub Desktop.
só uma criptografia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mdFODAO($string) { | |
$salt = md5($string."chave de segurança"); | |
$string = md5("$salt$string$salt"); | |
return $string; | |
} | |
echo mdFODAO("sua senha =)"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment