forked from anoma/ferveo
-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Labels
Description
Lines 53 to 57 in 434fd5d
| pub fn serialized_length(&self) -> usize { | |
| self.commitment.serialized_size(Compress::No) | |
| + self.auth_tag.serialized_size(Compress::No) | |
| + self.ciphertext.len() | |
| } |
This function is either incorrect & unused (in which case, it should be fixed/removed), or it's hinting that we're serializing the U and W components in uncompressed form (which is slightly wasteful).
Reactions are currently unavailable