NFC_Client/config.example.py

14 lines
340 B
Python

# Where should i send the readings?
SERVER = 'http://127.0.0.1:8188/nfc/read'
# Should i verify the nfc tags (authenticating password)?
SECURE = False
# Is this a boopbox?
BOOPBOX_ID = None
# This is used to verify the tags
SALT = b"This is used to generate the password that will be used to encrypt/verify each tag"
ITERATIONS = 10000