| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | // +build jsonpackage shadowsocksimport (	"encoding/json"	"errors"	"strings"	"github.com/v2ray/v2ray-core/common/log"	"github.com/v2ray/v2ray-core/common/protocol"	"github.com/v2ray/v2ray-core/proxy/internal")func (this *Config) UnmarshalJSON(data []byte) error {	type JsonConfig struct {		Cipher   string `json:"method"`		Password string `json:"password"`		UDP      bool   `json:"udp"`		Level    byte   `json:"level"`		Email    string `json:"email"`	}	jsonConfig := new(JsonConfig)	if err := json.Unmarshal(data, jsonConfig); err != nil {		return errors.New("Shadowsocks: Failed to parse config: " + err.Error())	}	this.UDP = jsonConfig.UDP	jsonConfig.Cipher = strings.ToLower(jsonConfig.Cipher)	switch jsonConfig.Cipher {	case "aes-256-cfb":		this.Cipher = &AesCfb{			KeyBytes: 32,		}	case "aes-128-cfb":		this.Cipher = &AesCfb{			KeyBytes: 16,		}	case "chacha20":		this.Cipher = &ChaCha20{			IVBytes: 8,		}	case "chacha20-ietf":		this.Cipher = &ChaCha20{			IVBytes: 12,		}	default:		log.Error("Shadowsocks: Unknown cipher method: ", jsonConfig.Cipher)		return internal.ErrBadConfiguration	}	if len(jsonConfig.Password) == 0 {		log.Error("Shadowsocks: Password is not specified.")		return internal.ErrBadConfiguration	}	this.Key = PasswordToCipherKey(jsonConfig.Password, this.Cipher.KeySize())	this.Level = protocol.UserLevel(jsonConfig.Level)	this.Email = jsonConfig.Email	return nil}func init() {	internal.RegisterInboundConfig("shadowsocks", func() interface{} { return new(Config) })}
 |