| 58 | } |
| 59 | |
| 60 | void FHE_PK::KeyGen(Rq_Element& sk, PRNG& G, int noise_boost) |
| 61 | { |
| 62 | Rq_Element a(*this); |
| 63 | a.randomize(G); |
| 64 | partial_key_gen(sk, a, G, noise_boost); |
| 65 | } |
| 66 | |
| 67 | void FHE_PK::partial_key_gen(const Rq_Element& sk, const Rq_Element& a, PRNG& G, |
| 68 | int noise_boost) |
no test coverage detected