Heim  >  Artikel  >  Backend-Entwicklung  >  单向字符串加密的php实例_PHP教程

单向字符串加密的php实例_PHP教程

WBOY
WBOYOriginal
2016-07-21 14:53:33815Durchsuche

/**
 * 单向字符串加密算法    不能用作密码加密
 */
if (CRYPT_STD_DES == 1)
{
echo "Standard DES: ".crypt("hello world")."\n";
}
else
{
echo "Standard DES not supported.\n";
}

if (CRYPT_EXT_DES == 1)
{
echo "Extended DES: ".crypt("hello world")."\n";
}
else
{
echo "Extended DES not supported.\n";
}

if (CRYPT_MD5 == 1)
{
echo "MD5: ".crypt("hello world")."\n";
}
else
{
echo "MD5 not supported.\n";
}

if (CRYPT_BLOWFISH == 1)
{
echo "Blowfish: ".crypt("hello world");
}
else
{
echo "Blowfish DES not supported.";
}
?>

作者:k7gxn56

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364730.htmlTechArticle?php /** * 单向字符串加密算法 不能用作密码加密 */ if (CRYPT_STD_DES == 1) { echo Standard DES: .crypt(hello world).\n; } else { echo Standard DES not supported.\n;...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn