Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
全部。我正在检查 dtls 库。我找到了一些用于 dtls 实现的库。特别是,tinydtls 库适用于具有受限资源和数据大小等限制的 1 类设备。并且,一般 dtls 禁用了某些功能。但是,我不知道 tinydtls 的哪些功能受到限制。您能否让我知道一般 dtls 限制了哪些功能以及 dtls 和 tinydtls 之间究竟有什么区别?
tinydtls 不支持 X.509 证书(添加它可能没什么大不了的)。
它也是为 6LowPAN 设计的,它倾向于不在同一个 UDP 数据包中聚合握手消息,而是在多个数据包中聚合。它仅支持面向 CoAP 的密码套件(例如:AES CCM-8)也不支持简历。
除此之外,它真的很紧凑,代码很清晰。
mbed tls 或 gnu tls 也实现了 DTLS