docs: update Information

This commit is contained in:
Lukas Forsberg 2025-09-28 16:44:21 +02:00 committed by Lukas Forsberg
parent 5dbb3fdeb1
commit 7d5898b515

View File

@ -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
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
```