隐蔽的python代码加密到php代码加密

时间:2019-02-06 04:40:20

标签: php python

我有可以加密的python代码。我想将其转换为PHP代码,这是我的python代码:

hmac_signature = hmac.new("111", "222", hashlib.sha256).digest()
hmac_signature_encoded = base64.b64encode(hmac_signature)
print hmac_signature_encoded

1 个答案:

答案 0 :(得分:0)

最好解释一下您已经尝试过将此代码从Python转换为PHP的原因,以便您可以使用Google搜索“ hmac.new php”,这将使您答案比要求如何在此处写入更好,因为StackOverflow并非编码服务。

以下网址可能是您的问题的答案:

PHP vs Python: Generating a HMAC