python base64解密
时间: 2023-11-06 07:54:50 浏览: 132
base64加密解密
在 Python 中使用 base64 模块进行解密,可以使用以下代码:
```python
import base64
# 将待解密的字符串转换为 bytes 类型
encrypted_str = "cGFzc3dvcmQ="
encrypted_bytes = encrypted_str.encode("utf-8")
# 使用 base64 模块进行解密
decrypted_bytes = base64.b64decode(encrypted_bytes)
decrypted_str = decrypted_bytes.decode("utf-8")
print(decrypted_str) # 输出解密后的字符串
```
在上面的代码中,`cGFzc3dvcmQ=` 是一个 base64 编码的字符串,表示的是字符串 "password"。通过将其转换为 bytes 类型,然后使用 `base64.b64decode()` 方法进行解密,最后再将解密后的 bytes 类型转换为字符串类型,即可得到解密后的字符串 "password"。
阅读全文