mirror of
https://github.com/SagerNet/sing-shadowtls.git
synced 2025-04-04 04:37:37 +03:00
Add client and service
This commit is contained in:
parent
320d58c57a
commit
6c9bdfc858
16 changed files with 1173 additions and 0 deletions
20
v3_constrat.go
Normal file
20
v3_constrat.go
Normal 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
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue