Skip to content
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

Merged
merged 1 commit into from Feb 15, 2023
Merged

Conversation

bwesterb
Copy link
Member

No description provided.

@bwesterb
Copy link
Member Author

@armfazh

@bwesterb bwesterb force-pushed the bas/ckem branch 2 times, most recently from 842d8f8 to 9cc25ea Compare February 13, 2023 18:10
Copy link
Contributor

@armfazh armfazh left a 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.

kem/hybrid/ckem.go Show resolved Hide resolved
kem/hybrid/ckem.go Outdated Show resolved Hide resolved
Comment on lines +126 to +129
buf := make([]byte, sch.PrivateKeySize())
_, _ = h.Read(buf)
rnd := bytes.NewReader(buf)
key, x, y, err := elliptic.GenerateKey(sch.curve, rnd)
Copy link
Contributor

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.

Suggested change
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)

Copy link
Member Author

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.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(yet)

Copy link
Member Author

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.

Copy link
Contributor

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.

  1. xof already implements io.reader
  2. 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.

Copy link
Member Author

@bwesterb bwesterb Feb 15, 2023

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. :)

@bwesterb
Copy link
Member Author

Also I was wondering if we can reuse the group interface.

Might be possible, yes.

@bwesterb bwesterb merged commit 90f2a3e into cloudflare:main Feb 15, 2023
@bwesterb bwesterb deleted the bas/ckem branch February 15, 2023 14:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants