-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
secp256k1: Optimize precomp value storage.
This optimizes the storage of the pre-computed byte points used to accelerate scalar base multiplication to store the data as 32-byte big-endian integers instead of as a series of little-endian uint32s which reduces the amount of uncompressed bytes that need to stored by 128KiB. Further, since the compressed table is stored in the string table of the binary, it also reduces the size the of final binary by ~92.5KiB.
- Loading branch information
Showing
3 changed files
with
10 additions
and
20 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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