BASE64加密字符串怎么实现
时间: 2024-05-15 22:15:44 浏览: 67
Base64加密的方法
在Python中,可以通过base64模块来实现BASE64加密字符串。具体实现方法如下:
1. 导入base64模块:
``` python
import base64
```
2. 将需要加密的字符串转换为字节串:
``` python
str = "Hello World!"
bytes = str.encode('utf-8')
```
3. 使用base64模块的b64encode()函数进行加密:
``` python
encrypted_bytes = base64.b64encode(bytes)
```
4. 将加密后的字节串转换为字符串:
``` python
encrypted_str = encrypted_bytes.decode('utf-8')
```
完整代码如下:
``` python
import base64
str = "Hello World!"
bytes = str.encode('utf-8')
encrypted_bytes = base64.b64encode(bytes)
encrypted_str = encrypted_bytes.decode('utf-8')
print(encrypted_str)
```
输出结果为:
```
SGVsbG8gV29ybGQh
```
注意:解密时需要使用base64.b64decode()函数来进行解密。
阅读全文