python 各种md5长度输出


import hashlib
 
string = 'userId=669&apikey=098f6bcd4621d373cade4e832627b4f6×='
 
def md5value(key):
    input_name = hashlib.md5()
    input_name.update(key.encode("utf-8"))
    print("大写的32位" + (input_name.hexdigest()).upper())
    print("大写的16位"+(input_name.hexdigest())[8:-8].upper())
    print("小写的32位" + (input_name.hexdigest()).lower())
    print("小写的16位" + (input_name.hexdigest())[8:-8].lower())

原文链接:https://blog.csdn.net/li561999181/article/details/109716232

你可能感兴趣的:(爬虫,python)