📅  最后修改于: 2023-12-03 15:00:44.486000             🧑  作者: Mango
featedswdas
是一个基于 Python 的通用字符串加密/解密库。它为程序员提供了一种简单可靠的方式来保护他们的敏感信息。
pip install featedswdas
import featedswdas
# 加密字符串
encrypted = featedswdas.encrypt('hello world', 'secret_key', 'AES')
# 解密字符串
decrypted = featedswdas.decrypt(encrypted, 'secret_key', 'AES')
说明:以上示例使用 AES 算法对字符串
hello world
进行加密/解密,密钥为secret_key
。
import featedswdas
# 编码成 Base64 格式
encoded = featedswdas.base64_encode('hello world')
# 解码 Base64 格式字符串
decoded = featedswdas.base64_decode(encoded)
import featedswdas
# 使用 DES 加密算法,密钥长度为 8
featedswdas.set_algorithm('DES', key_length=8)
# 加密字符串
encrypted = featedswdas.encrypt('hello world', 'secret_key', 'DES')
# 解密字符串
decrypted = featedswdas.decrypt(encrypted, 'secret_key', 'DES')
说明:以上示例使用 DES 算法对字符串
hello world
进行加密/解密,密钥为secret_key
,密钥长度为 8 个字符。
featedswdas
是一个功能全面、易用的字符串加密/解密库,拥有多种加密算法和编码格式,并支持参数配置,能够满足大部分程序员的需求。欢迎使用!