Base64編碼原理: https://blog.csdn.net/wo541075754/article/details/81734770 def Enbs64(s): 編碼後的結果 result = '' 二進位數據 bin_data = '' Base64編碼對照表 bs64_table = ...
Base64編碼原理: https://blog.csdn.net/wo541075754/article/details/81734770
def Enbs64(s):
# 編碼後的結果
result = ''
# 二進位數據
bin_data = ''
# Base64編碼對照表
bs64_table = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', '+', '/']
# 轉為 ASCII 再轉為 二進位
for i in s:
# 8位組成的單個位元組
bytes_8 = bin(ord(i))[2:]
if len(bytes_8) < 8:
# 不夠8位,在前面用0填充
bytes_8 = '0' * (8 - len(bytes_8)) + bytes_8
bin_data += bytes_8
# 在二進位數據里,每次取出6個轉為整數,作為下標從bs64編碼表裡取值
for i in range(0, len(bin_data), 6):
# 6位組成的單個位元組
bytes_6 = bin_data[i:i + 6]
# 不足6位,在後面用0填充
if len(bytes_6) < 6:
bytes_6 = bytes_6 + '0' * (6 - len(bytes_6))
index = int(bytes_6, 2)
result += bs64_table[index]
# 全部編碼後,不足4位元組的用 "=" 填充
if len(result) % 4 != 0:
result = result + '=' * (4 - len(result) % 4)
return result
print(Enbs64('Welcome'))