MCPcopy
hub / github.com/smallfawn/QLScriptPublic / encode_phone

Function encode_phone

tianyi.py:79–80  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

77 return base64.b64encode(ciphertext).decode()
78
79def encode_phone(text):
80 return ''.join(chr(ord(char) + 2) for char in text)
81
82def generate_random_string(length=16):
83 return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(length))

Callers 1

userLoginNormalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected