A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

crypto.c

Committer:
andrewboyson
Date:
2019-09-24
Revision:
10:e269fd7b9500
Child:
12:2c342345b3db

File content as of revision 10:e269fd7b9500:

#include "rsa.h"
#include "tls.h"
#include "ser-cer.h"
#include "pri-key.h"
#include "led.h"

void CryptoInit()
{
    RsaSlowInit();
        TlsInit();
     SerCerInit();
     PriKeyInit();
}
void CryptoMain()
{
    RsaSlowMain();
        TlsMain();
}