A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Wed Apr 01 12:48:52 2020 +0000
Revision:
24:cb43290fc439
Parent:
14:03a0b8fd6ddc
Added check so that if the client closes the TCP connection before the TLS connection is established then respond that we have finished and the TCP connection is to be closed.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 10:e269fd7b9500 1 #include <stdint.h>
andrewboyson 10:e269fd7b9500 2 #include <stdbool.h>
andrewboyson 10:e269fd7b9500 3
andrewboyson 12:2c342345b3db 4 extern void RsaMain(void);
andrewboyson 12:2c342345b3db 5 extern void RsaInit(void);
andrewboyson 12:2c342345b3db 6
andrewboyson 14:03a0b8fd6ddc 7 extern int RsaStart(uint32_t* message, uint32_t* p, uint32_t* q, uint32_t* dp, uint32_t* dq, uint32_t* qi);
andrewboyson 10:e269fd7b9500 8
andrewboyson 14:03a0b8fd6ddc 9 extern bool RsaFinished(int slot);
andrewboyson 14:03a0b8fd6ddc 10 extern uint32_t* RsaResult (int slot);
andrewboyson 14:03a0b8fd6ddc 11 extern void RsaClear (int slot);