-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fixed width serde impls for secret/public key
Currently we serialize `SecretKey` and `PublicKey` using the `BytesVisitor`, this causes the serialized data to contain additional metadata encoding the length (an extra 8 bytes). This extra data is unnecessary since we know in advance the length of these two types (32 and 33 bytes respectively). Implement a sequence based visitor that encodes the keys as fixed width data.
- Loading branch information
Showing
2 changed files
with
74 additions
and
10 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
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