From 66eb0025286e0fa0dc7effee5bc0b31c42c007a4 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 10 Nov 2018 17:13:38 +0800 Subject: [PATCH] Fix a typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 095644e..ba1f585 100755 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ UDP headers are also supported. In UDP header mode, it behaves just like a norma ### Simulated TCP with Real-time/Out-of-Order Delivery In FakeTCP header mode,udp2raw simulates 3-way handshake while establishing a connection,simulates seq and ack_seq while data transferring. It also simulates following TCP options: `MSS`, `sackOk`, `TS`, `TS_ack`, `wscale`.Firewalls will regard FakeTCP as a TCP connection, but its essentially UDP: it supports real-time/out-of-order delivery(just as normal UDP does), no congestion control or re-transmission. So there wont be any TCP over TCP problem when using OpenVPN. -### Encrpytion, Anti-Replay +### Encryption, Anti-Replay * Encrypt your traffic with AES-128-CBC. * Protect data integrity by HMAC-SHA1 (or weaker MD5/CRC32). * Defense replay attack with an anti-replay window, smiliar to IPSec and OpenVPN.