A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Fri Aug 02 15:07:18 2019 +0000
Revision:
3:e6a2c4579a4d
Parent:
2:82268409e83f
Child:
8:5e66a6b4b38c
Changed SHA-256 to be addable rather than all at once so that it can be used with TLS handshakes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 1:9c66a551a67e 1 #include <stdbool.h>
andrewboyson 3:e6a2c4579a4d 2 #include "ser-cer.h"
andrewboyson 3:e6a2c4579a4d 3 #include "pri-key.h"
andrewboyson 3:e6a2c4579a4d 4 #include "tls-prf.h"
andrewboyson 1:9c66a551a67e 5
andrewboyson 1:9c66a551a67e 6 bool TlsTrace = true;
andrewboyson 1:9c66a551a67e 7
andrewboyson 1:9c66a551a67e 8 void TlsInit()
andrewboyson 1:9c66a551a67e 9 {
andrewboyson 1:9c66a551a67e 10 SerCerInit();
andrewboyson 1:9c66a551a67e 11 PriKeyInit();
andrewboyson 1:9c66a551a67e 12 TlsPrfTest();
andrewboyson 1:9c66a551a67e 13 }