We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb11f07 + 678b920 commit b143c96Copy full SHA for b143c96
libp2p/security/noise/io.py
@@ -41,7 +41,8 @@ class BaseNoiseMsgReadWriter(EncryptedMsgReadWriter):
41
read_writer: NoisePacketReadWriter
42
noise_state: NoiseState
43
44
- # FIXME: This prefix is added in msg#3 in Go. Check whether it's a desired behavior.
+ # NOTE: This prefix is added in msg#3 in Go.
45
+ # Support in py-libp2p is available but not used
46
prefix: bytes = b"\x00" * 32
47
48
def __init__(self, conn: IRawConnection, noise_state: NoiseState) -> None:
newsfragments/592.internal.rst
@@ -0,0 +1 @@
1
+remove FIXME comment since it's obsolete and 32-byte prefix support is there but not enabled by default
0 commit comments