PyBitmessage/src/pyelliptic/__init__.py

29 lines
535 B
Python
Raw Normal View History

2019-09-23 09:21:54 +00:00
"""
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.
2019-09-23 09:21:54 +00:00
"""
2013-01-16 16:52:52 +00:00
from .openssl import OpenSSL
from .ecc import ECC
from .eccblind import ECCBlind
from .cipher import Cipher
from .hash import hmac_sha256, hmac_sha512, pbkdf2
2013-01-16 16:52:52 +00:00
__version__ = '1.3'
__all__ = [
'OpenSSL',
2013-01-18 22:38:09 +00:00
'ECC',
'ECCBlind',
2013-01-18 22:38:09 +00:00
'Cipher',
'hmac_sha256',
'hmac_sha512',
'pbkdf2'
2013-01-16 16:52:52 +00:00
]