diffie-hellman: Verify public DH values in backends

This commit is contained in:
Martin Willi
2015-03-23 17:54:03 +01:00
parent a777155ffe
commit 0356089d0f
7 changed files with 107 additions and 1 deletions
@@ -92,6 +92,11 @@ METHOD(diffie_hellman_t, set_other_public_value, bool,
{
int len;
if (!diffie_hellman_verify_value(this->group, value))
{
return FALSE;
}
BN_bin2bn(value.ptr, value.len, this->pub_key);
chunk_clear(&this->shared_secret);
this->shared_secret.ptr = malloc(DH_size(this->dh));