Signature=urlencode(base64_encode(hash_hmac('sha1', Content, SecretKey,true)))
Content是多行字符串。
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文件,然后在批处理shell中写
php xxx.php 你的待加密content 加密的key
....
简单写一下,你应该明白我的意思
楼上是很幽默。。。。你也很幽默。。。
@初_九: .................你是来搞笑的?