https://github.com/isaka-james/cryptography-with-c
Special for writting the algorithms about the cryptography in C Language. Feel free to contribute.
https://github.com/isaka-james/cryptography-with-c
encryption-algorithms
Last synced: 3 months ago
JSON representation
Special for writting the algorithms about the cryptography in C Language. Feel free to contribute.
- Host: GitHub
- URL: https://github.com/isaka-james/cryptography-with-c
- Owner: isaka-james
- License: mit
- Created: 2023-08-07T14:20:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-07T14:20:46.000Z (almost 2 years ago)
- Last Synced: 2024-11-28T06:14:06.462Z (7 months ago)
- Topics: encryption-algorithms
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cryptography
Special for writting the algorithms and rehersals about the cryptography in C Language. Feel free to contribute.## nkolima algorithm
- It follows that the algorithm determine the cipher text based on the **KEY** and the position of the word. I got an idea from the **caesar algorithm** which uses **KEY** only to encrypt the text, which is by the way less secure. Hence I came with this solution.
- Remember the **KEY** in this algorithm (demo) is **3**.
- Guys I need some solution in dencrypting this algorithm.
- The **formula** of the algorithm is given by::```c
cipherText[i] = 'a' + (((textInput[i] * i * KEY - 'a')*KEY)%26);
```## LICENCE
Use the algorithm whatever you like for **FREE**.