This commit is contained in:
2025-11-01 23:13:51 +08:00
parent bf79d9ef6f
commit f689e08a1d
7 changed files with 369 additions and 57 deletions

View File

@@ -0,0 +1,9 @@
from .sm2 import SM2Algorithm
__all__ = [
'SM2Algorithm',
]
registry = {
"SM-2": SM2Algorithm,
}