Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added functions for handshake test #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion 3. Composing Version Messages/exercises.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import socket
from random import randint
from lib import compute_checksum
from hashlib import sha256
from lib import bytes_to_ip, read_varstr, read_varint, bytes_to_bool, read_version_payload

ZERO = b'\x00'
IPV4_PREFIX = b"\x00" * 10 + b"\x00" * 2
Expand Down Expand Up @@ -109,4 +111,4 @@ def handshake(address):
sock.sendall("OUR VERACK HERE")
print("Sent verack")

return sock, stream
return sock, stream