Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 454 Bytes

README.md

File metadata and controls

16 lines (16 loc) · 454 Bytes

LAKE Letter Alphabet Key Encryption

Symetric encryption for letters.

Howto

To import use import LAKE when the LAKE.py file is in your scripts directory.
To encrypt use LAKE.encrypt(<plaintext>, <letterkey>), example:

import LAKE
# prints fnpjx
print(LAKE.encrypt("hello", "key"))

To decrypt use LAKE.decrypt(<cyphertext>, <letterkey>), example:

import LAKE
#prints hello
print(LAKE.decrypt("fnpjx", "key"))