RSA Public Key Encryption and Signing (32bit)

Basic RSA Public Key encryption and signing to demonstrate the principle.
2,4K download
Aggiornato 11 ott 2015

Visualizza la licenza

This submission was created to learn a bit about RSA Public Key encryption and signing. It consists of the following files:
GenerateKeyPair (Generates the public and private key)
Encrypt (using the public key)
Decrypt (using the private key)
Sign (using the private key)
Verify (using the public key)
Test (giving an example how these functions are used)

and two helper functions:

ExtendedEuclideanAlgorithm
ModularExponentiation

Unfortunately the randseed command of the Communications System Toolbox ist required at the moment. To remove this dependency it is possible to enter the two random prime numbers manually in the GenerateKeyPair script.

Since the purpose of this small framework is to understand the basic principle of RSA, I did not implement a biginteger type and also did not optimize the helper functions for huge numbers (2048 bit). The randseed command provides prime numbers up to 1000 or ~2^10.

Cita come

Vincent Wilms (2024). RSA Public Key Encryption and Signing (32bit) (https://www.mathworks.com/matlabcentral/fileexchange/53457-rsa-public-key-encryption-and-signing-32bit), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2013a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Encryption / Cryptography in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Updated description.
Updated preview image.