溫馨提示×

TextBlob中怎么加密和解密文本

小億
85
2024-05-13 12:10:14

TextBlob庫本身并不提供對文本進(jìn)行加密和解密的功能,它主要用于自然語言處理和文本分析。要對文本進(jìn)行加密和解密,你可以使用其他加密算法和庫,比如使用Python的Crypto庫或者使用第三方加密算法。以下是一個使用Crypto庫對文本進(jìn)行加密和解密的示例:

from Crypto.Cipher import AES
from Crypto.Random import get_random_bytes
import base64

def encrypt_text(key, text):
    cipher = AES.new(key, AES.MODE_EAX)
    ciphertext, tag = cipher.encrypt_and_digest(text.encode())
    return base64.b64encode(cipher.nonce + tag + ciphertext)

def decrypt_text(key, encrypted_text):
    encrypted_text = base64.b64decode(encrypted_text)
    nonce = encrypted_text[:AES.block_size]
    tag = encrypted_text[AES.block_size:AES.block_size+16]
    ciphertext = encrypted_text[AES.block_size+16:]
    
    cipher = AES.new(key, AES.MODE_EAX, nonce)
    decrypted_text = cipher.decrypt_and_verify(ciphertext, tag)
    return decrypted_text.decode()

# Generate a random key
key = get_random_bytes(16)

# Encrypt text
text = "Hello, world!"
encrypted_text = encrypt_text(key, text)
print("Encrypted text:", encrypted_text)

# Decrypt text
decrypted_text = decrypt_text(key, encrypted_text)
print("Decrypted text:", decrypted_text)

請注意,以上示例中使用了AES對稱加密算法對文本進(jìn)行加密和解密。在實際應(yīng)用中,你需要妥善保存密鑰以確保安全性。

0