drogue-iot / embedded-tls

An Rust TLS 1.3 implementation for embedded devices.
Apache License 2.0
172 stars 22 forks source link

Only hash the processed handshake #103

Closed bugadani closed 1 year ago

bugadani commented 1 year ago

Fixes #75

My reproducer here was Reqwless, trying to connect to https://google.com Before this PR, the process failed with an IncorrectHandshake error. This PR solves the cause of this error, which is incorrect updating of the transcript hash.

lulf commented 1 year ago

Fixes #75