Why HMAC/Signed API requests are not prevalent compared to API keys or JWT based requests

While all/majority of AWS APIs requests are signed with HMAC, it is not as prevalent for other APIs in general.
Most likely, the reason is because of the gotchas involved when client has to make the signed API work as they may miss a few h… Continue reading Why HMAC/Signed API requests are not prevalent compared to API keys or JWT based requests

How to securely connect and send data between a raspberry pi and an app?

For one of my student projects, users remotely control a raspberry pi device via an app. This allows them view camera feed and also send out commands remotely.This data needs to be kept secure, Currently, I am trying to setup mac address f… Continue reading How to securely connect and send data between a raspberry pi and an app?