mirror of
https://github.com/SagerNet/sing-shadowtls.git
synced 2025-04-03 20:27:35 +03:00
Update workflow
This commit is contained in:
parent
b28a0ef94f
commit
320ffbe9f0
7 changed files with 185 additions and 17 deletions
|
@ -15,7 +15,6 @@ import (
|
|||
"github.com/sagernet/sing/common/buf"
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
"github.com/sagernet/sing/common/rw"
|
||||
)
|
||||
|
||||
func extractFrame(conn net.Conn) (*buf.Buffer, error) {
|
||||
|
@ -63,7 +62,7 @@ func verifyClientHello(frame []byte, users []User) (*User, error) {
|
|||
for _, user := range users {
|
||||
hmacSHA1Hash := hmac.New(sha1.New, []byte(user.Password))
|
||||
hmacSHA1Hash.Write(frame[tlsHeaderSize:hmacIndex])
|
||||
hmacSHA1Hash.Write(rw.ZeroBytes[:4])
|
||||
hmacSHA1Hash.Write([]byte{0, 0, 0, 0})
|
||||
hmacSHA1Hash.Write(frame[hmacIndex+hmacSize:])
|
||||
if hmac.Equal(frame[hmacIndex:hmacIndex+hmacSize], hmacSHA1Hash.Sum(nil)[:hmacSize]) {
|
||||
return &user, nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue