Home > php教程 > php手册 > body text

单向字符串加密的php实例

WBOY
Release: 2016-06-13 11:36:29
Original
767 people have browsed it

/**
 * 单向字符串加密算法    不能用作密码加密
 */
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

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!