A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

tls/tls.c

Committer:
andrewboyson
Date:
2019-09-11
Revision:
9:f354b4859b0b
Parent:
8:5e66a6b4b38c
Child:
10:e269fd7b9500

File content as of revision 9:f354b4859b0b:

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

bool TlsTrace = true;

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