mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
26 lines
944 B
Go
26 lines
944 B
Go
package shadowimpl
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/sagernet/sing-shadowsocks"
|
|
"github.com/sagernet/sing-shadowsocks/shadowaead"
|
|
"github.com/sagernet/sing-shadowsocks/shadowaead_2022"
|
|
"github.com/sagernet/sing-shadowsocks/shadowstream"
|
|
"github.com/sagernet/sing/common"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
)
|
|
|
|
func FetchMethod(method string, password string, timeFunc func() time.Time) (shadowsocks.Method, error) {
|
|
if method == "none" || method == "plain" || method == "dummy" {
|
|
return shadowsocks.NewNone(), nil
|
|
} else if common.Contains(shadowstream.List, method) {
|
|
return shadowstream.New(method, nil, password)
|
|
} else if common.Contains(shadowaead.List, method) {
|
|
return shadowaead.New(method, nil, password)
|
|
} else if common.Contains(shadowaead_2022.List, method) {
|
|
return shadowaead_2022.NewWithPassword(method, password, timeFunc)
|
|
} else {
|
|
return nil, E.New("shadowsocks: unsupported method ", method)
|
|
}
|
|
}
|