| 181 | } |
| 182 | |
| 183 | void DistKeyGen::finalize(FHE_PK& pk, FHE_SK& sk) |
| 184 | { |
| 185 | pk.assign(a, b, enc.c1(), enc.c0()); |
| 186 | secret.lower_level(); |
| 187 | sk.assign(secret); |
| 188 | } |
| 189 | |
| 190 | void DistKeyGen::check_equality(const DistKeyGen& other) |
| 191 | { |
no test coverage detected