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

The ibe.Ciphertext struct is missing serialization methods #568

Open
AnomalRoil opened this issue Mar 11, 2025 · 1 comment
Open

The ibe.Ciphertext struct is missing serialization methods #568

AnomalRoil opened this issue Mar 11, 2025 · 1 comment

Comments

@AnomalRoil
Copy link
Contributor

Our ibe.Ciphertext struct can have variable size serialization, depending on the curve of the kyber.Point and the size of the hash used, etc.

kyber/encrypt/ibe/ibe.go

Lines 15 to 22 in 23debab

type Ciphertext struct {
// Random point rP
U kyber.Point
// Sigma attached to ID: sigma XOR H(rG_id)
V []byte
// ciphertext of the message M XOR H(sigma)
W []byte
}

It would be nice to have a "good way" of encoding it and decoding it.
Otherwise all the users have to go through the painful process of re-implementing something like that, e.g.:
https://github.com/drand/tlock/blob/24c8c6e1b288fcd1a703da1db5606800b4607337/tlock.go#L216-L234

@ineiti
Copy link
Member

ineiti commented Mar 12, 2025

You can use https://github.com/dedis/protobuf for this - it's not a very good solution, but at least it handles all different types of kyber.Point, which is the difficult part here.
To make a generic (Un)Marshal method, you'd have to start with an identifier of the point-type, then have a switch/case list of points and unmarshal them.
Unfortunately the Point interface doesn't have a GroupName method, so you'd have to do either type reflection, or suppose that the code calling UnMarshal knows which group to use. Which might be a correct assumption to do.

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

No branches or pull requests

2 participants