欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

一句php加密字符串的代码,请问能否用批处理实现

程序员文章站 2024-02-14 18:49:46
...

http://cn2.php.net/manual/en/function.hash-hmac.php 楼上好幽默 这个问题应该不难 ?php $Content = $argv[1]; $SecretKey = $argv[2]; $Signature = urlencode(base64_encode(hash_hmac('sha1', Content, SecretKey,true))); ? 保存成xxx.php文件,然后在

http://cn2.php.net/manual/en/function.hash-hmac.php

楼上好幽默

这个问题应该不难

$Content = $argv[1];

$SecretKey = $argv[2];

$Signature = urlencode(base64_encode(hash_hmac('sha1', Content, SecretKey,true)));

?>

保存成xxx.php文件,然后在批处理shell中写

php xxx.php 你的待加密content 加密的key

....

简单写一下,你应该明白我的意思