Skip to content

Commit

Permalink
Compilation fixes for ESP8266 EQT toolchain. (#2287)
Browse files Browse the repository at this point in the history
  • Loading branch information
slaff authored and slav-at-attachix committed Mar 24, 2021
1 parent 300fb8c commit 396f20a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sming/Libraries/OtaUpgrade/OtaUpgrade/EncryptedStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

#include "BasicStream.h"
#include <sodium/crypto_secretstream_xchacha20poly1305.h>
#include <memory>

namespace OtaUpgrade
{
Expand All @@ -20,7 +21,7 @@ namespace OtaUpgrade
*
* The class processes encrypted firmware upgrade files created by otatool.py.
* A buffer is allocated dynamically to fit the largest chunk of the encryption container
* (2kB unless otatool.py was modified). The actual processing of the decrypted data is
* (2kB unless otatool.py was modified). The actual processing of the decrypted data is
* defered to #BasicStream.
*/
class EncryptedStream : public BasicStream
Expand Down

0 comments on commit 396f20a

Please sign in to comment.