1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 13:54:27 -04:00
v2fly/proxy/shadowsocks/config.go

85 lines
1.7 KiB
Go
Raw Normal View History

2016-01-27 06:46:40 -05:00
package shadowsocks
import (
2016-02-23 12:16:13 -05:00
"crypto/cipher"
2016-01-28 06:33:58 -05:00
"crypto/md5"
2016-01-27 06:46:40 -05:00
"github.com/v2ray/v2ray-core/common/crypto"
2016-02-03 06:18:28 -05:00
"github.com/v2ray/v2ray-core/common/protocol"
2016-01-27 06:46:40 -05:00
)
type Cipher interface {
KeySize() int
IVSize() int
2016-02-23 12:16:13 -05:00
NewEncodingStream(key []byte, iv []byte) (cipher.Stream, error)
NewDecodingStream(key []byte, iv []byte) (cipher.Stream, error)
2016-01-27 06:46:40 -05:00
}
type AesCfb struct {
KeyBytes int
}
func (this *AesCfb) KeySize() int {
return this.KeyBytes
}
func (this *AesCfb) IVSize() int {
return 16
}
2016-02-23 12:16:13 -05:00
func (this *AesCfb) NewEncodingStream(key []byte, iv []byte) (cipher.Stream, error) {
2016-02-25 15:50:10 -05:00
stream := crypto.NewAesEncryptionStream(key, iv)
2016-02-23 12:16:13 -05:00
return stream, nil
2016-01-27 06:46:40 -05:00
}
2016-02-23 12:16:13 -05:00
func (this *AesCfb) NewDecodingStream(key []byte, iv []byte) (cipher.Stream, error) {
2016-02-25 15:50:10 -05:00
stream := crypto.NewAesDecryptionStream(key, iv)
2016-02-23 12:16:13 -05:00
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
2016-01-27 06:46:40 -05:00
}
type Config struct {
2016-01-28 06:33:58 -05:00
Cipher Cipher
Key []byte
UDP bool
2016-02-03 06:18:28 -05:00
Level protocol.UserLevel
2016-02-28 08:50:30 -05:00
Email string
2016-01-28 06:33:58 -05:00
}
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
2016-01-27 06:46:40 -05:00
}