|
|
|
@ -244,6 +244,8 @@ namespace stream
@@ -244,6 +244,8 @@ namespace stream
|
|
|
|
|
{ |
|
|
|
|
uint8_t signature[256]; |
|
|
|
|
auto signatureLen = m_RemoteIdentity->GetSignatureLen (); |
|
|
|
|
if(signatureLen <= sizeof(signature)) |
|
|
|
|
{ |
|
|
|
|
memcpy (signature, optionData, signatureLen); |
|
|
|
|
memset (const_cast<uint8_t *>(optionData), 0, signatureLen); |
|
|
|
|
if (!m_RemoteIdentity->Verify (packet->GetBuffer (), packet->GetLength (), signature)) |
|
|
|
@ -255,6 +257,11 @@ namespace stream
@@ -255,6 +257,11 @@ namespace stream
|
|
|
|
|
memcpy (const_cast<uint8_t *>(optionData), signature, signatureLen); |
|
|
|
|
optionData += signatureLen; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
LogPrint(eLogError, "Streaming: Signature too big, ", signatureLen, " bytes"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
packet->offset = packet->GetPayload () - packet->buf; |
|
|
|
|
if (packet->GetLength () > 0) |
|
|
|
|