xiaoyong931011
2020-05-22 c58b804688f17bfb97532c8b9da0fcb1b77b58bb
src/main/java/com/xcong/excoin/configurations/security/TokenFilter.java
@@ -73,7 +73,6 @@
                String rsaToken = bearerToken.replace(AppContants.TOKEN_START_WITH, "");
                RSA rsa = new RSA(securityProperties.getPrivateKey(), null);
                String[] tokens = StrUtil.split(rsa.decryptStr(rsaToken, KeyType.PrivateKey), "_");
                if (verifyTokenExpired(Long.parseLong(tokens[1]))) {
                    return tokens[0];
                }