mirror of
https://github.com/mbirth/tcl_ota_check.git
synced 2024-11-09 22:06:47 +00:00
23 lines
620 B
Python
23 lines
620 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import base64
|
|
|
|
class CredentialsMixin:
|
|
@staticmethod
|
|
def get_creds():
|
|
creds = {
|
|
b"YWNjb3VudA==": b"emhlbmdodWEuZ2Fv",
|
|
b"cGFzc3dvcmQ=": b"cWFydUQ0b2s=",
|
|
}
|
|
params = {base64.b64decode(key): base64.b64decode(val) for key, val in creds.items()}
|
|
return params
|
|
|
|
@staticmethod
|
|
def get_creds2():
|
|
creds = {
|
|
b"YWNjb3VudA==": b"VGVsZUV4dFRlc3Q=",
|
|
b"cGFzc3dvcmQ=": b"dDA1MjM=",
|
|
}
|
|
params = {base64.b64decode(key): base64.b64decode(val) for key, val in creds.items()}
|
|
return params
|