search

Home  >  Q&A  >  body text

python encryption and php docking?

import hmac
import base64
from hashlib import sha1
key = '0ba013e361b64a75b85dce6945322596'
url = 'https://adx.toutiao.com/adx/retargeting-portal/api?
       &type=2&source=1001×tamp=1491464202'
msg = hmac.new(key, url, sha1).hexdigest()
signature = base64.urlsafe_b64encode(msg)
# NDU3ODYzZDRmODJmNzQxODViYWY3Njc3OWZkMmM4NTgxMTJlYzM1Ng==
final_url = url + "&signature=" + signature

The above is the encryption of Python. Please tell me the encryption algorithm corresponding to PHP. I have been working on it for a long time and I still can’t connect it?

巴扎黑巴扎黑2755 days ago466

reply all(1)I'll reply

  • 迷茫

    迷茫2017-05-16 13:03:47

    $token = '0ba013e361b64a75b85dce6945322596';
    $clientStr = 'https://adx.toutiao.com/adx/r...';
    echo base64_encode(hash_hmac("SHA1",$clientStr,$token));

    reply
    0
  • Cancelreply