pub fn generate_keys<C: Into<Config>>(config: C) -> (ClientKey, ServerKey)
Expand description

Generates keys using the provided config.

Example

use concrete::{generate_keys, ConfigBuilder};

let config = ConfigBuilder::all_disabled().enable_default_uint3().build();
let (client_key, server_key) = generate_keys(config);