This commit is contained in:
guanjihuan 2023-10-09 04:54:53 +08:00
parent c3d5d26197
commit 4690515bd2
4 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# API Reference shows all functions in Guan package. The current version is guan-0.0.189, updated on December 07, 2023. # API Reference shows all functions in Guan package. The current version is guan-0.0.190, updated on December 09, 2023.
import guan import guan

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.0.189 version = 0.0.190
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.1 Metadata-Version: 2.1
Name: guan Name: guan
Version: 0.0.189 Version: 0.0.190
Summary: An open source python package Summary: An open source python package
Home-page: https://py.guanjihuan.com Home-page: https://py.guanjihuan.com
Author: guanjihuan Author: guanjihuan

View File

@ -1,6 +1,6 @@
# Guan is an open-source python package developed and maintained by https://www.guanjihuan.com/about (Ji-Huan Guan, 关济寰). The primary location of this package is on website https://py.guanjihuan.com. GitHub link: https://github.com/guanjihuan/py.guanjihuan.com. # Guan is an open-source python package developed and maintained by https://www.guanjihuan.com/about (Ji-Huan Guan, 关济寰). The primary location of this package is on website https://py.guanjihuan.com. GitHub link: https://github.com/guanjihuan/py.guanjihuan.com.
# The current version is guan-0.0.189, updated on December 07, 2023. # The current version is guan-0.0.190, updated on December 09, 2023.
# Installation: pip install --upgrade guan # Installation: pip install --upgrade guan
@ -3648,7 +3648,6 @@ def encryption_MD5(password, salt=''):
def encryption_SHA_256(password, salt=''): def encryption_SHA_256(password, salt=''):
import hashlib import hashlib
password = salt+password password = salt+password
print(password)
hashed_password = hashlib.sha256(password.encode()).hexdigest() hashed_password = hashlib.sha256(password.encode()).hexdigest()
return hashed_password return hashed_password