A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Revision:
10:e269fd7b9500
Child:
12:2c342345b3db
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/crypto.c	Tue Sep 24 18:11:02 2019 +0000
@@ -0,0 +1,18 @@
+#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();
+}
\ No newline at end of file