https://github.com/ccode-lang/lake
https://github.com/ccode-lang/lake
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ccode-lang/lake
- Owner: Ccode-lang
- License: mit
- Created: 2022-09-25T23:48:43.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-02T04:22:42.000Z (10 months ago)
- Last Synced: 2025-09-02T06:13:44.059Z (10 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"))
```