Peter Surda
ff1f451691
- added serializing and deserializing - added a signature chain class `ECCBlindSigChain` - added more tests
31 lines
597 B
Python
31 lines
597 B
Python
"""
|
|
Copyright (C) 2010
|
|
Author: Yann GUIBET
|
|
Contact: <yannguibet@gmail.com>
|
|
|
|
Python OpenSSL wrapper.
|
|
For modern cryptography with ECC, AES, HMAC, Blowfish, ...
|
|
|
|
This is an abandoned package maintained inside of the PyBitmessage.
|
|
"""
|
|
|
|
from .cipher import Cipher
|
|
from .ecc import ECC
|
|
from .eccblind import ECCBlind
|
|
from .eccblindchain import ECCBlindChain
|
|
from .hash import hmac_sha256, hmac_sha512, pbkdf2
|
|
from .openssl import OpenSSL
|
|
|
|
__version__ = '1.3'
|
|
|
|
__all__ = [
|
|
'OpenSSL',
|
|
'ECC',
|
|
'ECCBlind',
|
|
'ECCBlindChain',
|
|
'Cipher',
|
|
'hmac_sha256',
|
|
'hmac_sha512',
|
|
'pbkdf2'
|
|
]
|