mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
13 lines
161 B
Python
13 lines
161 B
Python
class Empty:
|
|
pass
|
|
|
|
|
|
# Handshake pattern tokens
|
|
TOKEN_E = 'e'
|
|
TOKEN_S = 's'
|
|
TOKEN_EE = 'ee'
|
|
TOKEN_ES = 'es'
|
|
TOKEN_SE = 'se'
|
|
TOKEN_SS = 'ss'
|
|
TOKEN_PSK = 'psk'
|