mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-04-28 03:01:21 -04:00
* This changes allows to use compression seeds for which the initial seed is a XofSeed. Also storing a TableIndex allows to use the same generator to generate multiple Seeded entities as it's needed for CompressionXofKeySet. * Add some PartialEq derives and a test to make sure expanding a CompressedXofKeySet via its specific method (which is written as the NIST document specifies, using one generator seeded at the beginning) or using the method of CompressedServerKey (i.e each entity that needs to be decompressed re-seeds its own generator) yields matching results. Backward data is regenerated because the CompressionSeed changed, but it is ok as the previous changes were not in production yet