A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Wed Jul 31 15:12:34 2019 +0000
Revision:
2:82268409e83f
Parent:
1:9c66a551a67e
Child:
4:6a1d887f1cad
A lot of tidying. Not working yet.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 1:9c66a551a67e 1 #include <stdint.h>
andrewboyson 1:9c66a551a67e 2 #include <stdbool.h>
andrewboyson 1:9c66a551a67e 3
andrewboyson 2:82268409e83f 4 extern bool TlsTrace;
andrewboyson 2:82268409e83f 5
andrewboyson 1:9c66a551a67e 6 extern void TlsRequest(char* pTlsStateData, char* pWebStateData, int size, char* pRequestStream, uint32_t positionInRequestStream);
andrewboyson 2:82268409e83f 7 extern bool TlsPoll (char* pTlsStateData, char* pWebStateData, bool clientFinished);
andrewboyson 1:9c66a551a67e 8 extern void TlsAddChar(char c);
andrewboyson 1:9c66a551a67e 9
andrewboyson 1:9c66a551a67e 10 extern void TlsInit(void);