Is it possible to make web client, that used https protocol in Arduino Pro Mini?
Vitaliy_Livnov:
Is it possible to make web client, that used https protocol in Arduino Pro Mini?
No. The Arduino doesn't have enough memory or speed to support https.
Thank you.
PaulS:
No. The Arduino doesn't have enough memory or speed to support https.
Can we modificate Arduino to work with https? Or we must use another boards for it?
Vitaliy_Livnov:
Can we modificate Arduino to work with https? Or we must use another boards for it?
How would you modify the Arduino to increase the processing speed and memory?
Vitaliy_Livnov:
Can we modificate Arduino to work with https? Or we must use another boards for it?
Can you multiply the 2KB RAM of the Atmega328 by 100 or more, so that you have a minimum of 200 KB RAM at least, instead of just 2 kilobytes?
If not, you better try to use strong encryption with systems that have a lot more of RAM (megabytes or gigabytes), such as perhaps a Raspberry Pi.
Can we modificate Arduino to work with https? Or we must use another boards for it?
Not sure what you trying to do but if you want to see your arduino data/sensors thru internet you can try
reading the data from arduino and create your https with another software sending them thru internet.
Thanks for all!