This repository has been archived on 2025-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
CSS2021-SecLab-WriteUp/diffie-hellman-ii.md

41 lines
741 B
Markdown
Raw Permalink Normal View History

2022-01-30 21:03:46 +01:00
# Diffie-Hellman II
Gegegen sind die Parameter für den Diffie-Hellman-Algorithmus:
2022-01-30 23:05:00 +01:00
```python
In [1]: a = 6
...: b = 4
...: g = 16
...: P = 19
```
Dabei kennt Alice die Zahlen `a`, `g` und `P`.
Bob kennt analog `b`, `g`, und `P`.
2022-01-30 21:03:46 +01:00
# Lösung
2022-01-30 23:05:00 +01:00
Alice und Bob Berechnen jeweils ihren
Zwischenexponenten und übertragen ihn.
```
A = g^a mod P
B = g^b mod P
```
2022-01-30 21:03:46 +01:00
Damit können beide den Schlüssel berechnen:
2022-01-30 23:05:00 +01:00
```
K = A^b mod P
= (g^a)^b mod P
= g^(a*b) mod P
= g^(b*a) mod P
= (g^b)^a mod P
= B^a mod P
```
Das gibt uns (siehe [Weak Hybrid Encryption](weak-hybrid-encryption) für Code):
```python
In [3]: A = modpow(g, a, P)
In [4]: B = modpow(g, b, P)
In [5]: K = modpow(B, a, P)
In [6]: A, B, K
Out[6]: (7, 5, 7)
```