An open API service indexing awesome lists of open source software.

https://github.com/ccode-lang/lake


https://github.com/ccode-lang/lake

Last synced: 16 days ago
JSON representation

Awesome Lists containing this project

README

          

# LAKE `Letter Alphabet Key Encryption`
Symmetric encryption for letters.
## Howto
To import, use `import LAKE` when the LAKE.py file is in your scripts directory.
To encrypt use `LAKE.encrypt(, )`, example:
```python
import LAKE
# prints fnpjx
print(LAKE.encrypt("hello", "key"))
```
To decrypt use `LAKE.decrypt(, )`, example:
```python
import LAKE
#prints hello
print(LAKE.decrypt("fnpjx", "key"))
```