A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

tls/tls.c

Committer:
andrewboyson
Date:
2019-09-07
Revision:
8:5e66a6b4b38c
Parent:
3:e6a2c4579a4d
Child:
9:f354b4859b0b

File content as of revision 8:5e66a6b4b38c:

#include <stdbool.h>
#include "ser-cer.h"
#include "pri-key.h"
#include "tls-prf.h"
#include "tls.h"

bool TlsTrace = true;

void TlsMain()
{
    TlsAsync();
}
void TlsInit()
{
    SerCerInit();
    PriKeyInit();
    TlsPrfTest();
}