| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | package shadowsocksimport (	"crypto/cipher"	"crypto/md5"	"github.com/v2ray/v2ray-core/common/crypto"	"github.com/v2ray/v2ray-core/common/protocol")type Cipher interface {	KeySize() int	IVSize() int	NewEncodingStream(key []byte, iv []byte) (cipher.Stream, error)	NewDecodingStream(key []byte, iv []byte) (cipher.Stream, error)}type AesCfb struct {	KeyBytes int}func (this *AesCfb) KeySize() int {	return this.KeyBytes}func (this *AesCfb) IVSize() int {	return 16}func (this *AesCfb) NewEncodingStream(key []byte, iv []byte) (cipher.Stream, error) {	stream := crypto.NewAesEncryptionStream(key, iv)	return stream, nil}func (this *AesCfb) NewDecodingStream(key []byte, iv []byte) (cipher.Stream, error) {	stream := crypto.NewAesDecryptionStream(key, iv)	return stream, nil}type ChaCha20 struct {	IVBytes int}func (this *ChaCha20) KeySize() int {	return 32}func (this *ChaCha20) IVSize() int {	return this.IVBytes}func (this *ChaCha20) NewEncodingStream(key []byte, iv []byte) (cipher.Stream, error) {	return crypto.NewChaCha20Stream(key, iv), nil}func (this *ChaCha20) NewDecodingStream(key []byte, iv []byte) (cipher.Stream, error) {	return crypto.NewChaCha20Stream(key, iv), nil}type Config struct {	Cipher Cipher	Key    []byte	UDP    bool	Level  protocol.UserLevel}func PasswordToCipherKey(password string, keySize int) []byte {	pwdBytes := []byte(password)	key := make([]byte, 0, keySize)	md5Sum := md5.Sum(pwdBytes)	key = append(key, md5Sum[:]...)	for len(key) < keySize {		md5Hash := md5.New()		md5Hash.Write(md5Sum[:])		md5Hash.Write(pwdBytes)		md5Hash.Sum(md5Sum[:0])		key = append(key, md5Sum[:]...)	}	return key}
 |