-
Notifications
You must be signed in to change notification settings - Fork 146
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
kem: add P-256 + Kyber768Draft00 hybrid #402
Conversation
842d8f8
to
9cc25ea
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, check my comments.
Also I was wondering if we can reuse the group interface.
buf := make([]byte, sch.PrivateKeySize()) | ||
_, _ = h.Read(buf) | ||
rnd := bytes.NewReader(buf) | ||
key, x, y, err := elliptic.GenerateKey(sch.curve, rnd) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that GenerateKey function can loop more than once, requesting more bytes from the reader.
buf := make([]byte, sch.PrivateKeySize()) | |
_, _ = h.Read(buf) | |
rnd := bytes.NewReader(buf) | |
key, x, y, err := elliptic.GenerateKey(sch.curve, rnd) | |
key, x, y, err := elliptic.GenerateKey(sch.curve, h) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, good point. h
doesn't implement io.Reader
though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(yet)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I can just use the xof
package, nice.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this doesn't address my comment.
you need to pass the xof
object, and remove buf
.
- xof already implements io.reader
- the issue is that
buf
has fixed size, but it is not guaranteed that reader will be called only one time. It could be called many times.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're not looking at the latest diff: there I fixed it. :)
Might be possible, yes. |
No description provided.