-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crypto/ecdh: remove 8 byte pointer overhead for non-boringcrypto builds #69575
base: master
Are you sure you want to change the base?
crypto/ecdh: remove 8 byte pointer overhead for non-boringcrypto builds #69575
Conversation
Change-Id: I3e6f5e43a20291ed7030df3c0b47481f725a3dcb
This PR (HEAD: 7b756dd) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/614085. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Mateusz Poliwczak: Patch Set 1: Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-09-21T19:13:13Z","revision":"bc06f2e52d210189425fc4f900379caddc71cacf"} Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Mateusz Poliwczak: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Go LUCI: Patch Set 1: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
Message from Jorropo: Patch Set 1: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/614085. |
This change makes the PublicKey and PrivateKey structs 8 bytes smaller,
by removing a pointer field from non-boringcrypto builds.