int main(void) {
djcs_t_public_key *pk = djcs_t_init_public_key();
djcs_t_private_key *vk = djcs_t_init_private_key();
hcs_random *hr = hcs_init_random();
// key length = 2048, sharing length 128, threshold 3, decrypt participant 3
djcs_t_generate_key_pair(pk, vk, hr, 2048, 128, 3, 3);
}
The code never finishes its compilation.
I thought that I understand how it works (the algorithm), that is why I wrote these function for keygen.
Please help me to point out the mistake.
Thanks in advance.
The code never finishes its compilation.
I thought that I understand how it works (the algorithm), that is why I wrote these function for keygen.
Please help me to point out the mistake.
Thanks in advance.