Set m.raw in encryptedExtensionsMsg.

Otherwise adding it to the handshake hash doesn't work right.

Change-Id: I2fabae72e8b088a5df26bbeac946f19144d58733
Reviewed-on: https://boringssl-review.googlesource.com/8762
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
David Benjamin 2016-07-13 16:42:36 -04:00 committed by CQ bot account: commit-bot@chromium.org
parent 49864a56ec
commit 6f8f4de300

View File

@ -865,6 +865,7 @@ func (m *encryptedExtensionsMsg) marshal() []byte {
}
func (m *encryptedExtensionsMsg) unmarshal(data []byte) bool {
m.raw = data
if len(data) < 6 {
return false
}