Base64换表

Base64换表

import base64
import string

str1 = "x2dtJEOmyjacxDemx2eczT5cVS9fVUGvWTuZWjuexjRqy24rV29q"

string1 = "ZYXABCDEFGHIJKLMNOPQRSTUVWzyxabcdefghijklmnopqrstuvw0123456789+/"
string2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

print(base64.b64decode(str1.translate(str.maketrans(string1, string2))))

需要将string1转换成string2在正常base64解码

str1是要解密的代码

string1是改过之后的base64表

参考文章

posted @ 2024-12-24 16:49  Yolololololo  阅读(1)  评论(0编辑  收藏  举报