Initial commit

This commit is contained in:
世界 2022-01-29 03:25:38 +08:00
commit 5cc189a169
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
32 changed files with 2565 additions and 0 deletions

View file

@ -0,0 +1,37 @@
package shadowsocks
import (
"bytes"
"io"
"sing/common/exceptions"
)
type Cipher interface {
KeySize() int
IVSize() int
NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (io.Writer, error)
NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (io.Reader, error)
EncodePacket(key []byte, buffer *bytes.Buffer) error
DecodePacket(key []byte, buffer *bytes.Buffer) error
}
type CipherCreator func() Cipher
var cipherList map[string]CipherCreator
func init() {
cipherList = make(map[string]CipherCreator)
}
func RegisterCipher(method string, creator CipherCreator) {
cipherList[method] = creator
}
func CreateCipher(method string) (Cipher, error) {
creator := cipherList[method]
if creator != nil {
return creator(), nil
}
return nil, exceptions.New("unsupported method: ", method)
}