https://github.com/tankengine-ish/crypt_me
Simple Text Encryption Program [personal project]
https://github.com/tankengine-ish/crypt_me
ascii uuid-generator
Last synced: about 1 year ago
JSON representation
Simple Text Encryption Program [personal project]
- Host: GitHub
- URL: https://github.com/tankengine-ish/crypt_me
- Owner: TankEngine-ish
- Created: 2024-03-16T18:44:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-19T19:29:05.000Z (about 2 years ago)
- Last Synced: 2024-06-21T14:09:01.605Z (almost 2 years ago)
- Topics: ascii, uuid-generator
- Language: Go
- Homepage:
- Size: 1.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crypt_Me
This simple program takes an input as a string and outputs an encrypted version of it.
The process of doing so involves adding 3 to the ASCII code of each letter in the input string.
There's also a decryption function which, as you can guess, subtracts the number 3 out of each letter's ASCII code.
The project's goal was to get to know the workflow of creating packages, best practices when creating a module, uploading dependencies (so much better than JS), etc.