defined why2_get_chat* rsa stuff fns

This commit is contained in:
Václav Šmejkal 2024-04-13 12:32:43 +02:00
parent bb8436badd
commit 8f3af8c7d1
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -125,4 +125,14 @@ void why2_chat_deallocate_keys(void)
{
why2_deallocate(rsa_modulus);
why2_deallocate(rsa_d);
}
char *why2_get_chat_modulus(void)
{
return rsa_modulus;
}
char *why2_get_chat_d(void)
{
return rsa_d;
}