Microsoft.Web.Redis.RedisSessionStateProvider会话管理连接字符串

时间:2019-02-05 08:18:04

标签: c# asp.net stackexchange.redis session-management

我在Redis上使用以下配置设置进行会话管理。现在由于安全原因,我需要加密连接字符串。
怎么做呢?
以下是我在Web配置文件中使用的配置。

<sessionState mode="Custom" customProvider="MySessionStateStore">
  <providers>      
     <add applicationName="testapp" loggingClassName="Logger" 
          loggingMethodName="Log"   
          connectionString="x.x.x.x:6381,x.x.x.x:6381,x.x.x.x:6381,
          ssl=false,password=xxx" name="MySessionStateStore" 
          type="Microsoft.Web.Redis.RedisSessionStateProvider" 
          host="" accessKey="" ssl="true" />
  </providers>
</sessionState>

编辑1

我的项目中没有其他代码可以解密连接字符串。我只想知道这一点。
我需要覆盖任何类还是有什么办法?

0 个答案:

没有答案