1

I have a simple sql database on an asp.net server.

This database will log temp data sent from an esp8266 programmed with arduino ide.

1- how would I go about security? Knowing that esp8266 cant handle ssl.

2- how would I stop man in middle attacks?

3- how would I stop anyone from send a fake post request to my server and populate my database?

4

1 回答 1

0

ESP8266 绝对可以处理 SSL。事实上,Arduino 存储库包含一个 SSL 客户端作为其库的一部分。

下面是一个示例,展示了 SSL 在执行基本 HTTP 请求时的作用:https ://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/HTTPSRequest/HTTPSRequest.ino

于 2017-03-09T20:17:09.617 回答