ahmadfaizalbh / quick_secure

String encryption

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quick Secure

String encryption

Install

pip install quick-secure

Usage

import quick_secure
message = "sample message for encryption"
password = "confidential"

# Encrypt message
encrypted_message = quick_secure.encrypt(message, password)
print(encrypted_message)

#Decrypt message
decrypted_message = quick_secure.decrypt(encrypted_message, password)
print(decrypted_message)

About

String encryption


Languages

Language:Python 100.0%