mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
39 lines
658 B
Go
39 lines
658 B
Go
package shadowsocks
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
)
|
|
|
|
func init() {
|
|
RegisterCipher("none", func() Cipher {
|
|
return (*NoneCipher)(nil)
|
|
})
|
|
}
|
|
|
|
type NoneCipher struct{}
|
|
|
|
func (c *NoneCipher) KeySize() int {
|
|
return 16
|
|
}
|
|
|
|
func (c *NoneCipher) SaltSize() int {
|
|
return 0
|
|
}
|
|
|
|
func (c *NoneCipher) CreateReader(_ []byte, _ []byte, reader io.Reader) io.Reader {
|
|
return reader
|
|
}
|
|
|
|
func (c *NoneCipher) CreateWriter(key []byte, iv []byte, writer io.Writer) io.Writer {
|
|
return writer
|
|
}
|
|
|
|
func (c *NoneCipher) EncodePacket([]byte, *buf.Buffer) error {
|
|
return nil
|
|
}
|
|
|
|
func (c *NoneCipher) DecodePacket([]byte, *buf.Buffer) error {
|
|
return nil
|
|
}
|