java110
2020-06-14 91f58ac34a01db7bb4e30a57af4454e0c36fd1c9
java110-core/src/main/java/com/java110/core/factory/AuthenticationFactory.java
@@ -79,6 +79,31 @@
        return md5(reqInfo);
    }
    public static String SHA1Encode(String sourceString)
    {
        String resultString = null;
        try {
            resultString = new String(sourceString);
            MessageDigest md = MessageDigest.getInstance("SHA-1");
            resultString = byte2hexString(md.digest(resultString.getBytes()));
        } catch (Exception localException) {
        }
        return resultString;
    }
    public static final String byte2hexString(byte[] bytes)
    {
        StringBuffer buf = new StringBuffer(bytes.length * 2);
        for (int i = 0; i < bytes.length; i++) {
            if ((bytes[i] & 0xFF) < 16) {
                buf.append("0");
            }
            buf.append(Long.toString(bytes[i] & 0xFF, 16));
        }
        return buf.toString().toUpperCase();
    }
    /**
     * dataFlow 对象签名
     *
@@ -90,8 +115,14 @@
            throw new NoAuthorityException(ResponseConstant.RESULT_CODE_NO_AUTHORITY_ERROR, "MD5签名过程中出现错误");
        }
        String reqInfo = dataFlow.getTransactionId() + dataFlow.getRequestTime() + dataFlow.getAppId();
        reqInfo += "GET,DELETE".equals(dataFlow.getRequestHeaders().get(CommonConstant.HTTP_METHOD)) ?
                dataFlow.getRequestHeaders().get("REQUEST_URL") : dataFlow.getReqData();
        String url = dataFlow.getRequestHeaders().get("REQUEST_URL");
        String param = "";
        if(url.indexOf("?") > 0){
            param = url.substring(url.indexOf("?"));
        }
        //,DELETE
        reqInfo += "GET".equals(dataFlow.getRequestHeaders().get(CommonConstant.HTTP_METHOD)) ?
                param : dataFlow.getReqData();
        reqInfo += dataFlow.getAppRoutes().get(0).getSecurityCode();
        return md5(reqInfo);
    }
@@ -399,15 +430,17 @@
    /***********************************JWT end***************************************/
    public static void main(String[] args) throws Exception {
        KeyPair keyPair = genKeyPair(1024);
//        KeyPair keyPair = genKeyPair(1024);
//
//        //获取公钥,并以base64格式打印出来
//        PublicKey publicKey = keyPair.getPublic();
//        System.out.println("公钥:" + new String(Base64.getEncoder().encode(publicKey.getEncoded())));
//
//        //获取私钥,并以base64格式打印出来
//        PrivateKey privateKey = keyPair.getPrivate();
//        System.out.println("私钥:" + new String(Base64.getEncoder().encode(privateKey.getEncoded())));
        //获取公钥,并以base64格式打印出来
        PublicKey publicKey = keyPair.getPublic();
        System.out.println("公钥:" + new String(Base64.getEncoder().encode(publicKey.getEncoded())));
        //获取私钥,并以base64格式打印出来
        PrivateKey privateKey = keyPair.getPrivate();
        System.out.println("私钥:" + new String(Base64.getEncoder().encode(privateKey.getEncoded())));
        System.out.printf("passwdMd5 " + passwdMd5("wuxw2015"));
    }
}