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

16 lines
289 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
Herleitung und Code steht in [Weak Hybrid Encryption](weak-hybrid-encryption).
Wir müssen nur noch einsetzen:
```python
In [1]: euclid(53, 737)
Out[1]: (1, -292, 21)
```