pub fn gen_keys(parameters_set: Parameters) -> (ClientKey, ServerKey)
Expand description

Generate a couple of client and server keys.

Example

Generating a pair of ClientKey and ServerKey using the default parameters.

use concrete_shortint::gen_keys;

// generate the client key and the server key:
let (cks, sks) = gen_keys(Default::default());