mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Add password support for shadowsocks 2022 ciphers
This commit is contained in:
parent
f1a5f8aaa3
commit
2aae93c5b8
11 changed files with 204 additions and 180 deletions
|
@ -7,10 +7,16 @@ import (
|
|||
"math/rand"
|
||||
"net"
|
||||
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrBadKey = E.New("shadowsocks: bad key")
|
||||
ErrMissingPassword = E.New("shadowsocks: missing password")
|
||||
)
|
||||
|
||||
type Method interface {
|
||||
Name() string
|
||||
KeyLength() int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue