A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

crypto.c

Committer:
andrewboyson
Date:
2020-04-01
Revision:
24:cb43290fc439
Parent:
12:2c342345b3db

File content as of revision 24:cb43290fc439:

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

void CryptoInit()
{
        RsaInit();
        TlsInit();
     SerCerInit();
     PriKeyInit();
}
void CryptoMain()
{
        RsaMain();
        TlsMain();
}