From 7d5898b5155149db1f327c04b62033d1841b06b0 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 28 Sep 2025 16:44:21 +0200 Subject: [PATCH] docs: update Information --- Information.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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