https://github.com/xpd54/rsaonmultithreading
Rsa Cryptography algo on multithreading
https://github.com/xpd54/rsaonmultithreading
Last synced: 6 months ago
JSON representation
Rsa Cryptography algo on multithreading
- Host: GitHub
- URL: https://github.com/xpd54/rsaonmultithreading
- Owner: xpd54
- Created: 2014-02-11T07:49:26.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-11T07:53:58.000Z (almost 12 years ago)
- Last Synced: 2025-04-22T15:49:30.481Z (9 months ago)
- Language: C
- Size: 191 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
****RSA-Encryption-Decryption****
1) input.txt - Contains the text that is to be encrypted
and will be read by the RSA code.
2) cipher.txt- Contains the encrypted data written by the
RSA code.
3) plain.txt- Contains the decrypted output by the RSA code.
4) RSA.c - The major code which executes and implements
encrytion and decryption.
** How to run the RSA **
-> gcc RSA.c -lpthread -lm
-> ./a.out
The next thing on the terminal is the decrypted output.
-> in case it shows garbage text,then REcompile and RErun
the code.
***