Add client and service

This commit is contained in:
世界 2023-02-20 12:52:48 +08:00
parent 320d58c57a
commit 6c9bdfc858
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
16 changed files with 1173 additions and 0 deletions

20
v3_constrat.go Normal file
View file

@ -0,0 +1,20 @@
package shadowtls
const (
tlsRandomSize = 32
tlsHeaderSize = 5
tlsSessionIDSize = 32
clientHello = 1
serverHello = 2
changeCipherSpec = 20
alert = 21
handshake = 22
applicationData = 23
serverRandomIndex = tlsHeaderSize + 1 + 3 + 2
sessionIDLengthIndex = tlsHeaderSize + 1 + 3 + 2 + tlsRandomSize
tlsHmacHeaderSize = tlsHeaderSize + hmacSize
hmacSize = 4
)