[Ceres]: Allow arbitrary sized message in Crypto.verify_sig (#481)

* Allow arbitrary sized msg in signature verification

* Move Address.to_bytes documentation to correct place
This commit is contained in:
Hans Svensson
2023-08-24 16:14:40 +02:00
parent 108cb1f948
commit 78b758c337
4 changed files with 15 additions and 12 deletions
+2
View File
@@ -24,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
sized byte arrays.
- `Chain.network_id` - a function to get hold of the Chain's network id.
### Changed
- `Crypto.verify_sig` is changed to have `msg : bytes()`. I.e. the
signed data can be of any length (used to be limited to `bytes(32)`/`hash`).
### Removed
- `Bitwise.aes` standard library is removed - the builtin operations are superior.