diff --git a/Information.md b/Information.md index ca7d35c..9ee06a5 100644 --- a/Information.md +++ b/Information.md @@ -2,7 +2,7 @@ title: SSL/TLS description: published: true -date: 2025-09-28T14:42:56.701Z +date: 2025-09-28T14:44:20.293Z tags: editor: markdown dateCreated: 2025-09-28T14:42:56.701Z @@ -40,4 +40,14 @@ f(signature, CA public key) = result hash hash(certificate) = result hash ``` -The the client uses the Servers public key taken from the CA certificate and sends a messages which can only be correctly decoded if the server has the correct private key \ No newline at end of file +The the client uses the Servers public key taken from the CA certificate and sends a messages which can only be correctly decoded if the server has the correct private key. + +Client +``` +f(message, Server public key) = crypt +``` + +Server +``` +f(crypt, Server private Key) = message +``` \ No newline at end of file