|
@@ -8,7 +8,6 @@ import java.util.Map;
|
|
|
import javax.servlet.Filter;
|
|
|
import org.apache.commons.io.IOUtils;
|
|
|
import org.apache.shiro.cache.ehcache.EhCacheManager;
|
|
|
-import org.apache.shiro.codec.Base64;
|
|
|
import org.apache.shiro.config.ConfigurationException;
|
|
|
import org.apache.shiro.io.ResourceUtils;
|
|
|
import org.apache.shiro.mgt.SecurityManager;
|
|
@@ -23,6 +22,7 @@ import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
import com.ruoyi.common.constant.Constants;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
+import com.ruoyi.common.utils.security.CipherUtils;
|
|
|
import com.ruoyi.common.utils.spring.SpringUtils;
|
|
|
import com.ruoyi.framework.shiro.realm.UserRealm;
|
|
|
import com.ruoyi.framework.shiro.session.OnlineSessionDAO;
|
|
@@ -104,12 +104,6 @@ public class ShiroConfig
|
|
|
@Value("${shiro.cookie.maxAge}")
|
|
|
private int maxAge;
|
|
|
|
|
|
- /**
|
|
|
- * 设置cipherKey密钥
|
|
|
- */
|
|
|
- @Value("${shiro.cookie.cipherKey}")
|
|
|
- private String cipherKey;
|
|
|
-
|
|
|
/**
|
|
|
* 登录地址
|
|
|
*/
|
|
@@ -357,7 +351,7 @@ public class ShiroConfig
|
|
|
{
|
|
|
CookieRememberMeManager cookieRememberMeManager = new CookieRememberMeManager();
|
|
|
cookieRememberMeManager.setCookie(rememberMeCookie());
|
|
|
- cookieRememberMeManager.setCipherKey(Base64.decode(cipherKey));
|
|
|
+ cookieRememberMeManager.setCipherKey(CipherUtils.generateNewKey(128, "AES").getEncoded());
|
|
|
return cookieRememberMeManager;
|
|
|
}
|
|
|
|