python encode()

后端 未结 2 557
-上瘾入骨i
-上瘾入骨i 2020-12-02 21:07

Has hex codec been excluded from python 3.3? When I write the code

>>> s=\"Hallo\"
>>> s.encode(\'hex\')
Traceback (most recent call last):         


        
2条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 21:31

    this is the same answer for the above but i modified it so it works with python 3.

    import binascii
    from Crypto.Cipher import AES
    from Crypto import Random
    
    def encrypt(passwrd, message):
        msglist = []
        key = bytes(passwrd, "utf-8")
        iv = Random.new().read(AES.block_size)
        cipher = AES.new(key, AES.MODE_CFB, iv)
        msg = iv + cipher.encrypt(bytes(message, "utf-8"))
        msg = binascii.hexlify(msg)
        for letter in str(msg):
            msglist.append(letter)
        msglist.remove("b")
        msglist.remove("'")
        msglist.remove("'")
        for letter in msglist:
            print(letter, end="")
        print("")
    
    def decrypt(passwrd, message):
        msglist = []
        key = bytes(passwrd, "utf-8")
        iv = Random.new().read(AES.block_size)
        cipher = AES.new(key, AES.MODE_CFB, iv)
        msg = cipher.decrypt(binascii.unhexlify(bytes(message, "utf-8")))[len(iv):]
        for letter in str(msg):
            msglist.append(letter)
        msglist.remove("b")
        msglist.remove("'")
        msglist.remove("'")
        for letter in msglist:
            print(letter, end="")
        print("")
    

提交回复
热议问题