Metadata-Version: 2.1
Name: sm3utils
Version: 0.1.3
Summary: SM3 Cryptographic Hash Algorithm.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # sm3utils
        
        SM3 Cryptographic Hash Algorithm.
        
        ## Install
        
        ```
        pip install sm3utils
        ```
        
        ## Usage
        
        ```
        from sm3utils import sm3
        
        gen = sm3()
        gen.update(b'abc')
        result = gen.hexdigest()
        print("result=", result)
        
        # result= 66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0
        ```
        
        ## Releases
        
        ### 0.1.2
        
        - First release.
        
        ### 0.1.3
        
        - Add block_size and digest_size properties to sm3utils.sm3.
        
Keywords: sm3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
