1
Librazy 2018-01-23 13:53:52 +08:00 1
TCP 是流,用的是流加密( Stream cipher ),而 UDP 是包,那就要用对应的块加密 /分组密码( Block cipher )
|
2
xenme 2018-01-23 13:57:54 +08:00
TCP over UDP
最简单就是直接套一层 |
3
Librazy 2018-01-23 14:05:01 +08:00 1
想了想更大的问题在于 cipher mode。看了一下大概 EAX 比较合适,来源于这里的讨论 https://crypto.stackexchange.com/questions/5508/what-cipher-mode-is-suitable-for-independantly-decryptable-short-messages
|
4
choury 2018-01-23 16:10:11 +08:00
可以看下 dtls 是怎么实现的
|
5
townboy 2018-01-23 16:12:59 +08:00
可以看下 enet 是怎么实现的
|
6
zhujinliang 2018-01-23 16:16:01 +08:00
参考 Galois/Counter Mode (GCM)实现?
|