main #19

Merged
ccyj merged 10 commits from sangge/tpre-python:main into main 2023-10-21 20:40:15 +08:00
2 changed files with 1 additions and 6 deletions
Showing only changes of commit 8d559f94ad - Show all commits

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@ example.py
ReEncrypt.py
src/temp_message_file
src/temp_key_file
src/client.db

View File

@@ -1,6 +0,0 @@
from gmssl import * #pylint: disable = e0401
sm3 = Sm3() #pylint: disable = e0602
sm3.update(b'abc')
dgst = sm3.digest()
print("sm3('abc') : " + dgst.hex())