NFC_Client/config.example.py

14 lines
340 B
Python
Raw Permalink Normal View History

2023-07-11 19:49:11 +00:00
# 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