Skip to content

Commit

Permalink
Merge pull request #3 from ulamlabs/fix-security-warnings
Browse files Browse the repository at this point in the history
Update ecdsa to 0.13.3
  • Loading branch information
ksiazkowicz authored Apr 1, 2020
2 parents 689c1d7 + bdfdf73 commit 1b38e32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion aioeos/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def sign(self, digest):
).digest()

k = ecdsa.rfc6979.generate_k(
self._sk.curve.generator,
self._sk.curve.generator.order(),
self._sk.privkey.secret_multiplier,
hashlib.sha256,
sha_digest
Expand Down
7 changes: 4 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Maciej Janiszewski <[email protected]>"]
python = "^3.7"
aiohttp = "^3.3.1"
base58 = "^1.0.3"
ecdsa = "0.11"
ecdsa = "0.13.3"

[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
aiohttp==3.3.1
base58==1.0.3
ecdsa==0.11
ecdsa==0.13.3

0 comments on commit 1b38e32

Please sign in to comment.