mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
47 lines
1 KiB
Go
47 lines
1 KiB
Go
package shadowsocks
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
"github.com/sagernet/sing/common/exceptions"
|
|
"github.com/sagernet/sing/common/list"
|
|
)
|
|
|
|
type Cipher interface {
|
|
KeySize() int
|
|
SaltSize() int
|
|
CreateReader(key []byte, iv []byte, reader io.Reader) io.Reader
|
|
CreateWriter(key []byte, iv []byte, writer io.Writer) (io.Writer, int)
|
|
EncodePacket(key []byte, buffer *buf.Buffer) error
|
|
DecodePacket(key []byte, buffer *buf.Buffer) error
|
|
}
|
|
|
|
type CipherCreator func() Cipher
|
|
|
|
var (
|
|
cipherList *list.List[string]
|
|
cipherMap map[string]CipherCreator
|
|
)
|
|
|
|
func init() {
|
|
cipherList = new(list.List[string])
|
|
cipherMap = make(map[string]CipherCreator)
|
|
}
|
|
|
|
func RegisterCipher(method string, creator CipherCreator) {
|
|
cipherList.PushBack(method)
|
|
cipherMap[method] = creator
|
|
}
|
|
|
|
func CreateCipher(method string) (Cipher, error) {
|
|
creator := cipherMap[method]
|
|
if creator != nil {
|
|
return creator(), nil
|
|
}
|
|
return nil, exceptions.New("unsupported method: ", method)
|
|
}
|
|
|
|
func ListCiphers() []string {
|
|
return cipherList.Array()
|
|
}
|