A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Tue Aug 20 14:50:48 2019 +0000
Revision:
4:6a1d887f1cad
Parent:
2:82268409e83f
Child:
12:2c342345b3db
Continued work to implement TLS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:be515c9019e3 1 #include <stdbool.h>
andrewboyson 0:be515c9019e3 2
andrewboyson 4:6a1d887f1cad 3 extern int PriKeyDecryptStart (uint8_t* message);
andrewboyson 4:6a1d887f1cad 4 extern bool PriKeyDecryptFinished (int slot);
andrewboyson 4:6a1d887f1cad 5 extern uint8_t* PriKeyDecryptGetResult(int slot);
andrewboyson 4:6a1d887f1cad 6 extern void PriKeyDecryptClear (int slot);
andrewboyson 2:82268409e83f 7
andrewboyson 4:6a1d887f1cad 8 extern void PriKeyInit (void);