python 加密解密

  MD5   import hashlib   c = raw_input('輸入字符:')   #python3爲input    b = hashlib.md5()   b.update(c.encode(encoding='utf-8'))   print ('MD5加密前:'+ c)   print ('MD5加密後:'+b.hexdigest())   Base64      impo
相關文章
相關標籤/搜索