We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0eddd4b + b4dd004 commit 2dc1874Copy full SHA for 2dc1874
2 files changed
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+# 3.3
2
+
3
+- Implement a pure Python fallback for RIPEMD160 in case `hashlib` does not provide it.
4
+ NOTE: the Python implementation was copied from a test-only implementation and is not constant
5
+ time. This shouldn't be an issue for the usage we make of it here.
6
7
# 3.1
8
9
- Actually support Coincurve up to version 17..
bip32/__init__.py
@@ -1,7 +1,7 @@
from .bip32 import BIP32, PrivateDerivationError, InvalidInputError
from .utils import BIP32DerivationError, HARDENED_INDEX
-__version__ = "3.1"
+__version__ = "3.3"
__all__ = [
"BIP32",
0 commit comments