mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Initial commit
This commit is contained in:
commit
5cc189a169
32 changed files with 2565 additions and 0 deletions
37
protocol/shadowsocks/cipher.go
Normal file
37
protocol/shadowsocks/cipher.go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue