Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 453 Bytes

File metadata and controls

17 lines (13 loc) · 453 Bytes

Crypthon

My tiny implementation of classic asymmetric ciphers.

Features :

  • Primality tests : Fermat / Miller-Rabin
  • Basic random prime generator / primitive root finder
  • RSA encryption/decryption
  • Really basic ElGamal encryption/decryption

To do :

  • Implement AKS primality test
  • Solve message size problem in RSA
  • Improve power computation in ElGamal

Note :

This implementation does not intend to be secure nor seek performance.