Files
noiseprotocol/noise/constants.py
Piotr Lizonczyk bf36429fd7 * Adding handshake patterns
* Adding token constants for handshake patterns
2017-08-06 21:29:10 +02:00

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'