1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-03 17:23:43 -04:00
v2fly/proxy/shadowsocks/config.go

106 lines
2.2 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
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/crypto"
"v2ray.com/core/common/protocol"
2016-01-27 06:46:40 -05:00
)
2016-09-17 18:41:21 -04:00
func (this *Config) GetCipher() Cipher {
switch this.Cipher {
case Config_AES_128_CFB:
return &AesCfb{KeyBytes: 16}
case Config_AES_256_CFB:
return &AesCfb{KeyBytes: 32}
case Config_CHACHA20:
return &ChaCha20{IVBytes: 8}
case Config_CHACHA20_IEFT:
return &ChaCha20{IVBytes: 12}
}
panic("Failed to create Cipher. Should not happen.")
}
func (this *Account) Equals(another protocol.Account) bool {
if account, ok := another.(*Account); ok {
return account.Password == this.Password
}
return false
}
func (this *Account) AsAccount() (protocol.Account, error) {
return this, nil
}
func (this *Account) GetCipherKey(size int) []byte {
return PasswordToCipherKey(this.Password, size)
}
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
}
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
}