-
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/elliptic: implement unmarshal for compressed format #35110
crypto/elliptic: implement unmarshal for compressed format #35110
Conversation
This PR (HEAD: b46a8f8) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
Message from Gobot Gobot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be During May-July and Nov-Jan the Go project is in a code freeze, during which Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
b46a8f8
to
d9a339d
Compare
This PR (HEAD: d9a339d) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
d9a339d
to
a158b95
Compare
This PR (HEAD: a158b95) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
@dvyukov I believe this is quite useful change, could you please suggest what should be changed in order to merge this request? Thanks. |
This should answer your questions: |
@dvyukov oh, it's my mistake, thanks. |
a158b95
to
bfab7bc
Compare
This PR (HEAD: bfab7bc) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
bfab7bc
to
ea579f5
Compare
This PR (HEAD: ea579f5) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
First byte can be 0x2 or 0x3 (compressed form). To unmarshal used formula y² = x³ - 3x + b. Reuse code from `IsOnCurve`. closes golang#34105 issue
ea579f5
to
9b38b0a
Compare
This PR (HEAD: 9b38b0a) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/202819 to see it. Tip: You can toggle comments from me using the |
Any updates? |
Message from Katie Hockman: Patch Set 6: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
Message from Gobot Gobot: Patch Set 6: TryBots beginning. Status page: https://farmer.golang.org/try?commit=ec8e7ea0 Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
Message from Gobot Gobot: Patch Set 6: TryBot-Result-1 1 of 20 TryBots failed: Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
As I see, failed in another part (go mod) |
any updates? |
Message from Filippo Valsorda: Patch Set 6: (7 comments) Sorry for the review lag. The tree is almost frozen, but if you have time to address the comments today (on Thursday) it can still land in Go 1.15. Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
Message from Gobot Gobot: Patch Set 6: TryBot-Result-1 1 of 20 TryBots failed: Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/202819. |
Closing the PR hoping gerritbot will then let me make changes to it in Gerrit, so I can land it today. |
Fixes #34105 Co-authored-by: Filippo Valsorda <filippo@golang.org> Change-Id: I3470343ec9ce9a0bd5593a04d3ba5816b75d3332 GitHub-Last-Rev: 9b38b0a GitHub-Pull-Request: #35110 Reviewed-on: https://go-review.googlesource.com/c/go/+/202819 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
Fixes #34105 Co-authored-by: Filippo Valsorda <filippo@golang.org> Change-Id: I3470343ec9ce9a0bd5593a04d3ba5816b75d3332 GitHub-Last-Rev: 9b38b0a7f8cef7f001fe9126a1cfcb4990f7b996 GitHub-Pull-Request: golang/go#35110 Reviewed-on: https://go-review.googlesource.com/c/go/+/202819 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
Fixes #34105 Co-authored-by: Filippo Valsorda <filippo@golang.org> Change-Id: I3470343ec9ce9a0bd5593a04d3ba5816b75d3332 GitHub-Last-Rev: 9b38b0a7f8cef7f001fe9126a1cfcb4990f7b996 GitHub-Pull-Request: golang/go#35110 Reviewed-on: https://go-review.googlesource.com/c/go/+/202819 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
First byte can be 0x2 or 0x3 (compressed form).
To unmarshal used formula y² = x³ - 3x + b.
Fixes #34105