-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f6b680
commit 998c92b
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to the following versioning pattern: | ||
|
||
Given a version number MAJOR.MINOR.PATCH, increment: | ||
|
||
- MAJOR version when **breaking changes** are introduced; | ||
- MINOR version when **backwards compatible changes** are introduced; | ||
- PATCH version when backwards compatible bug **fixes** are implemented. | ||
|
||
|
||
## [Unreleased] | ||
|
||
## [2.0.0] - 2021-10-08 | ||
### Added | ||
- root imports: from ellipticcurve import PrivateKey, PublicKey, Signature, Ecdsa, File | ||
### Changed | ||
- return type of toDer() methods from str to bytes | ||
- internal DER parsing structure for better maintainability, translatability and usability | ||
|
||
## [1.1.1] - 2021-06-06 | ||
### Fixed | ||
- unstable results on certain curves due to missing modulo operator on signature verification | ||
|
||
## [1.1.0] - 2020-09-04 | ||
### Added | ||
- recoveryId generation and encoding in Signatures | ||
|
||
## [1.0.0] - 2020-04-13 | ||
### Added | ||
- first official version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,8 @@ | |
url="https://github.com/starkbank/ecdsa-python.git", | ||
author="Stark Bank", | ||
author_email="[email protected]", | ||
keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph"], | ||
version="1.1.1" | ||
keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph", "secp256k1", "prime256v1"], | ||
version="2.0.0" | ||
) | ||
|
||
|
||
|