namespace Common.Helper.Encryption { public class ConnectionStringsHelper { /// /// 直接返回解密后的connectionString /// /// /// /// public static string GetDesConfig(string configName,string configValue) { return DesHelper.DesDecrypt(AppSettingJsonHelper.GetSection(configName, configValue)); } } }