Skip to content
Snippets Groups Projects
Verified Commit 1c890796 authored by Renk, Jonas's avatar Renk, Jonas
Browse files

Final touch

parent b4ed8d3b
No related branches found
No related tags found
No related merge requests found
...@@ -7,9 +7,11 @@ Gegeben ist lediglich eine Diophantische Gleichung: ...@@ -7,9 +7,11 @@ Gegeben ist lediglich eine Diophantische Gleichung:
## Lösung ## Lösung
Herleitung und Code steht in [Weak Hybrid Encryption](weak-hybrid-encryption). Herleitung und Code stehen in [Weak Hybrid Encryption](weak-hybrid-encryption).
Wir müssen nur noch einsetzen: Wir müssen nur noch einsetzen:
```python ```python
In [1]: euclid(53, 737) In [1]: _, x, y = euclid(53, 737)
Out[1]: (1, -292, 21)
In [2]: x, y
Out[2]: (-292, 21)
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment