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/euklidischer-algorithmus.md

18 lines
311 B
Markdown
Raw Normal View History

2022-01-30 20:36:08 +01:00
# Euklidischer Algorithmus
Gegeben ist lediglich eine Diophantische Gleichung:
```
53*x + 737*y = 1
```
## Lösung
2022-01-30 23:08:01 +01:00
Herleitung und Code stehen in [Weak Hybrid Encryption](weak-hybrid-encryption).
2022-01-30 20:36:08 +01:00
Wir müssen nur noch einsetzen:
```python
2022-01-30 23:08:01 +01:00
In [1]: _, x, y = euclid(53, 737)
In [2]: x, y
Out[2]: (-292, 21)
2022-01-30 20:36:08 +01:00
```