22 lines
648 B
Python
22 lines
648 B
Python
# SPDX-FileCopyrightText: 2021 Carter Nelson for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# This file contains totp codes!
|
|
# If you put them in the code you risk committing that info or sharing it
|
|
|
|
# tuples of name, key, color
|
|
totp_keys = [
|
|
("Github", "JBSWY3DPEHPK3PXP", 0x8732A8),
|
|
("Discord", "JBSWY3DPEHPK3PXQ", 0x32A89E),
|
|
("Slack", "JBSWY5DZEHPK3PXR", 0xFC861E),
|
|
("Basecamp", "JBSWY6DZEHPK3PXS", 0x55C24C),
|
|
("Gmail", "JBSWY7DZEHPK3PXT", 0x3029FF),
|
|
None,
|
|
None, # must have 12 entires
|
|
None, # set None for unused keys
|
|
None,
|
|
("Hello Kitty", "JBSWY7DZEHPK3PXU", 0xED164F),
|
|
None,
|
|
None,
|
|
]
|