Encrypt INFORMATIONAL exchange if needed

This commit is contained in:
Clavister OpenSource
2012-03-20 17:31:14 +01:00
parent fbbd439bf9
commit b8383f1f2d
+11
View File
@@ -1459,9 +1459,19 @@ METHOD(message_t, generate, status_t,
hash_payload->set_hash(hash_payload, hash);
this->payloads->insert_first(this->payloads,
(payload_t*)hash_payload);
if (this->exchange_type == INFORMATIONAL_V1)
{
DBG3(DBG_ENC, "encrypting IKEv1 INFORMATIONAL exchange message");
this->is_encrypted = TRUE;
encrypted = TRUE;
}
chunk_free(&hash);
}
if (!encrypted)
{
/* if at least one payload requires encryption, encrypt the message.
* if we have no key material available, the flag will be reset below */
enumerator = this->payloads->create_enumerator(this->payloads);
@@ -1478,6 +1488,7 @@ METHOD(message_t, generate, status_t,
}
enumerator->destroy(enumerator);
}
}
DBG1(DBG_ENC, "generating %s", get_string(this, str, sizeof(str)));