深特云-AIOT智能物联网平台API文档

设备接入:

初次接入:http://www.deeptechmc.com/blog/20.html


设备通信:

通信协议: http://www.deeptechmc.com/blog/22.html


通信加密:

通信内容Message都通过加密 ECB  AES 256 ZeroPadding

加密:密文 = base64_encode(aes_encrypt("原文", "密钥", ZeroPadding))

解密:原文= aes_decrypt(base64_decode("原文"), "密钥", ZeroPadding)

加密参考:

https://tool.lmeee.com/jiami/aes

https://the-x.cn/cryptography/Aes.aspx


设备升级:

方案一:http://www.deeptechmc.com/blog/18.html

方案二:http://www.deeptechmc.com/blog/19.html

采用方案二,更轻量、逻辑清晰简洁。