A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

tls/tls.c

Committer:
andrewboyson
Date:
2019-08-02
Revision:
3:e6a2c4579a4d
Parent:
2:82268409e83f
Child:
8:5e66a6b4b38c

File content as of revision 3:e6a2c4579a4d:

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

bool TlsTrace = true;

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