Jump to content

mistvan

New Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by mistvan

  1. Hi,

    I'm very new to python and I have a question about AES.
    I have to use a function in both python and PHP which uses AES/ECB crypto, but couldn't get the equivalent output.
    The following python code is my starting point:

     

    from Crypto.Cipher import AES
    ...
      path = text.encode("utf-8")
      h = MD5.new(path)
      path_hash = h.digest()
      aes = AES.new(aes_key, AES.MODE_ECB)
      signing = aes.encrypt(path_hash)
      signing = heylify(signing)
      signing = signing.decode("utf-8")

    I tried to get the same result with php openssl_encrypt, but none of the cryptos resulted the same.

    Any help would be greatly appreciated.

    István 

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.