A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Thu Sep 26 07:19:09 2019 +0000
Revision:
12:2c342345b3db
Child:
14:03a0b8fd6ddc
Chinese remainder theorem implemented giving a useful reduction from 20s to 5s to decrypt RSA.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 12:2c342345b3db 1 #include "rsa.h"
andrewboyson 12:2c342345b3db 2
andrewboyson 12:2c342345b3db 3 void RsaInit()
andrewboyson 12:2c342345b3db 4 {
andrewboyson 12:2c342345b3db 5 RsaSlowInit();
andrewboyson 12:2c342345b3db 6 RsaFastInit();
andrewboyson 12:2c342345b3db 7 }
andrewboyson 12:2c342345b3db 8
andrewboyson 12:2c342345b3db 9 void RsaMain()
andrewboyson 12:2c342345b3db 10 {
andrewboyson 12:2c342345b3db 11 RsaSlowMain();
andrewboyson 12:2c342345b3db 12 RsaFastMain();
andrewboyson 12:2c342345b3db 13 }