Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eugenedakin/caesarcipher
Native Xojo code for the Caesar Cipher algorithm with an example program
https://github.com/eugenedakin/caesarcipher
caesar-cipher data decryption encryption xojo
Last synced: 28 days ago
JSON representation
Native Xojo code for the Caesar Cipher algorithm with an example program
- Host: GitHub
- URL: https://github.com/eugenedakin/caesarcipher
- Owner: eugenedakin
- License: mit
- Created: 2022-07-01T16:50:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-03T23:30:38.000Z (over 2 years ago)
- Last Synced: 2023-03-09T23:35:48.336Z (almost 2 years ago)
- Topics: caesar-cipher, data, decryption, encryption, xojo
- Language: Xojo
- Homepage:
- Size: 493 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CaesarCipher
Native Xojo code for the Caesar Cipher algorithm with an example programThis is a great start to learning cipher algorithms by using the Xojo programming language and the Caesar Cipher. This is written in Native Xojo Language and is cross-platform-compatible.
- Compatible OS's: All
- Xojo IDE: 2020 r2.1
- Xojo API: API 2
- Level: BeginnerCode for this example is in the following two methods: 1) CaesarCipherEncode, and 2) CaesarCipherDecode
Youtube video teaser:
[![Caesar Cipher Xojo Encryption](https://github.com/eugenedakin/CaesarCipher/blob/main/CaesarCipherYoutubeScreenGrab.png)](https://www.youtube.com/watch?v=vJU7l8RSkog)Instructions:
- Run the program in Xojo 2020 r2.1
- Enter your text in the Upper-Left TextArea Control
- Press Encrypt to use the Caesar Cipher Algorithm and the encoded text will appear in the control in the Upper-Right TextArea Control
- To decrypt the message, place the encoded message in the Lower-Left Control
- Press the Decrypt button
- The decrypted message will then appear in the Lower-Right ControlThe Methods can be copied and pasted to use in your program. This is written in native Xojo code.
An article was written in xDev (xdevmag.com) Issue 19.3 (May/June 2021) that describes the Xojo code. This is a great introduction to beginning a journey using ciphers, or also known as encoding/decoding data.