internal 1.1.39.3__py3-none-any.whl → 1.1.39.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of internal might be problematic. Click here for more details.
internal/utils.py
CHANGED
|
@@ -141,3 +141,15 @@ def hash_login_password(passwd):
|
|
|
141
141
|
sha_256.update(postfix.encode())
|
|
142
142
|
|
|
143
143
|
return sha_256.hexdigest()
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
def hash_secret_key(passwd):
|
|
147
|
+
prefix = '___'
|
|
148
|
+
postfix = '_______'
|
|
149
|
+
data = str(passwd)
|
|
150
|
+
sha_256 = hashlib.sha256()
|
|
151
|
+
sha_256.update(prefix.encode())
|
|
152
|
+
sha_256.update(data.encode())
|
|
153
|
+
sha_256.update(postfix.encode())
|
|
154
|
+
|
|
155
|
+
return sha_256.hexdigest()
|
|
@@ -33,8 +33,8 @@ internal/middleware/log_request.py,sha256=ZtCyfrF3IyKTF6Uj8L66CutdZi3srVmppqO_EX
|
|
|
33
33
|
internal/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
internal/model/base_model.py,sha256=2M9EUWitzG-5FD4tYbUULBcWL6045HfS6OkpwzevmsY,7892
|
|
35
35
|
internal/model/operate.py,sha256=QSM6yXYXpJMwrqkUGEWZLrEBaUgqHwVHY_Fi4S42hKc,3190
|
|
36
|
-
internal/utils.py,sha256=
|
|
36
|
+
internal/utils.py,sha256=dVhKi3WPXQzVjaIGZBdfNjkMYtE7O-vKeyyOSX4mTG0,4518
|
|
37
37
|
internal/validator_utils.py,sha256=CqjaVFoAu5MqvBG_AkTP-r7AliWawtUWB851USj4moI,1519
|
|
38
|
-
internal-1.1.39.
|
|
39
|
-
internal-1.1.39.
|
|
40
|
-
internal-1.1.39.
|
|
38
|
+
internal-1.1.39.4.dist-info/METADATA,sha256=j0gJufxymwJld35ELosysiBdkVivOvAuqzu8nshxgtI,941
|
|
39
|
+
internal-1.1.39.4.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
40
|
+
internal-1.1.39.4.dist-info/RECORD,,
|
|
File without changes
|