Skip to content

Instantly share code, notes, and snippets.

@felquis
Created April 29, 2011 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felquis/948299 to your computer and use it in GitHub Desktop.
Save felquis/948299 to your computer and use it in GitHub Desktop.
só uma criptografia
<?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