From ac9373fd6f0db53c983d87c4790cb627e82759e9 Mon Sep 17 00:00:00 2001
From: zhaoqingang <zhaoqg0118@163.com>
Date: 星期二, 25 二月 2025 17:25:39 +0800
Subject: [PATCH] merge
---
app/utils/password_handle.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/utils/password_handle.py b/app/utils/password_handle.py
index 2eebd7a..48063ed 100644
--- a/app/utils/password_handle.py
+++ b/app/utils/password_handle.py
@@ -31,13 +31,13 @@
async def password_encrypted(password):
hash_pwd = cipher_suite.encrypt(password.encode("utf-8")).decode("utf-8")
- print(hash_pwd)
+ # print(hash_pwd)
return hash_pwd
async def password_decrypted(hash_password):
pwd = cipher_suite.decrypt(hash_password).decode("utf-8")
- print(pwd)
+ # print(pwd)
return pwd
if __name__ == "__main__":
# 鐢熸垚涓�涓�10浣嶇殑瀵嗙爜
--
Gitblit v1.8.0