A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Revision:
8:5e66a6b4b38c
Parent:
6:819c17738dc2
Child:
14:03a0b8fd6ddc
--- a/explanation.txt	Thu Sep 05 12:58:41 2019 +0000
+++ b/explanation.txt	Sat Sep 07 18:56:01 2019 +0000
@@ -22,26 +22,26 @@
 
 Full  RSA handshake
 ===================
-ClientHello       --> use session id to jump to short handshake
-                  <-- ServerHello
-                  <-- Certificate
-                  <-- ServerHelloDone
+ClientHello       -=> use session id to jump to short handshake
+                  <=- ServerHello
+                  <=- Certificate
+                  <=- ServerHelloDone
                   
-ClientKeyExchange --> start asynchronous sha256 decryption
+ClientKeyExchange -=> start asynchronous sha256 decryption
 ChangeCipherSpec  --> switch to encrypedIn
-Finished          --> store the encrypted verify message
+Finished          -=> store the encrypted verify message
 
 sha256 decrypted  --> prepare the keys and decrypt the verify message
                   <-- ChangeCipherSpec
-                  <-- Finished
+                  <=- Finished
 
 
 Short RSA handshake
 ===================
-ClientHello       -->
-                  <-- ServerHello
+ClientHello       -=>
+                  <=- ServerHello
                   <-- ChangeCipherSpec
-                  <-- Finished
+                  <=- Finished
 ChangeCipherSpec  -->
-Finished          -->
+Finished          -=>
                 
\ No newline at end of file