Added
- Support for python3.9
Removed
- Support for python3.5
Fixed
- Multiplying by negative scalars (issue 70)
- Reading and writing keys to disk using encoders that output bytes (PR 62)
Updated
- `fastecdsa.keys.import_key` now has a consistent return type (`Tuple[Optional[int], Point]`) for public and private
keys. Previously public key imports returned `Point`, they now return `Tuple[None, Point]`, in other words a tuple
with the first entry being `None` (the private key) and the second entry being the point representing the public key.