Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytesbyharsh/rsa-encryption
Encrypting Messages Using RSA Encryption
https://github.com/bytesbyharsh/rsa-encryption
Last synced: 29 days ago
JSON representation
Encrypting Messages Using RSA Encryption
- Host: GitHub
- URL: https://github.com/bytesbyharsh/rsa-encryption
- Owner: bytesByHarsh
- License: mit
- Created: 2018-09-22T15:15:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-01T18:57:53.000Z (about 5 years ago)
- Last Synced: 2024-07-21T20:31:42.179Z (5 months ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSA-Encryption
RSA is an algorithm used by modern computers to encrypt and decrypt messages. It is an asymmetric cryptographic algorithm. Asymmetric means that there are two different keys. This is also called public key cryptography, because one of the keys can be given to anyone. The other key must be kept private. The algorithm is based on the fact that finding the factors of a large composite number is difficult: when the integers are prime numbers, the problem is called prime factorization.
**Note: This repository will be updated soon**
## Status - Completed Partially
The project was implemented on Arduino where a special math library was used in order to calculate power of very large number which even unsigned long long can not store.