Please enable JavaScript.
Coggle requires JavaScript to display documents.
SSL - Coggle Diagram
SSL
-
CRYPTO
Symmetric algorithms
-
-
Block cipher
-
AES (use bytes insted of bits, so its' more quckly)
-
-
Examples
Onlie messaging
1) DH for session key
Alice send A signed by its publick key
Bob do the same
Now they have sessions keys
EXAMPLE1. SEND BIG MESSAGE at once:
1) Alice generate K for AES, sign it by Bob Pub Key
2) Alice encrypt Message by K
3) Hash the message and sign it by Alice Private Key
4) Send 2+3
5) Bob will decrypt by its pirvate key the ASE Key (point 1)
6) Bob decrypt hash by Alice public key and check the Ek(M)
7) Decrypt Ek(M)
-
-
-
-