Notes
Notes - notes.io |
```python
# Пример скрипта для алгоритма кенгуру Полларда для поиска закрытого ключа по открытому ключу
# Открытый ключ
public_key = "03633cbe3ec02b9401c5effa144c5b4d22f87940259634858fc7e59b1c09937852"
# Параметры кривой (можете изменить на свои значения)
p = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F
g = 2
# Функция для вычисления значения открытого ключа
def calculate_public_key(x):
return pow(g, x, p)
# Начальные значения для "кенгуру" и "черепахи"
x1 = 1
x2 = 2
# Вычисление значений функции для "кенгуру" и "черепахи"
y1 = calculate_public_key(x1)
y2 = calculate_public_key(x2)
# Поиск коллизии
while y1 != y2:
# Шаг "кенгуру"
x1 += 1
y1 = calculate_public_key(x1)
# Шаг "черепахи"
x2 += 2
y2 = calculate_public_key(x2)
# Найдена коллизия, вычисление закрытого ключа
private_key = x2 - x1
print("Private key:", private_key)
```
Теперь функция `calculate_public_key` определена перед ее использованием, так что скрипт должен работать правильно. Попробуйте запустить его снова.
|
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team