id=$(echo -n "mydata" | openssl dgst -sha256 -hmac "mykey" -binary | openssl enc -base64)
这个在 php 里怎么处理
1
holinhot OP 这是 shell
|
2
holinhot OP 我搞定了 谢谢大家
$a=hash_hmac('sha256', $hs, $PRIVATE_KEY, true); $aa=base64_encode($a); echo urlencode($aa); |