%@ page contentType="text/html; charset=UTF-8" %>
<%@page import="com.forgon.tools.crypto.rsa.RSAEncrypt"%>
<%@page import="org.apache.commons.lang.StringUtils"%>
<%@ include file="../../common/taglibs.jsp" %>
<%
//登录密码的rsa公钥
String logonRSAPublicKey = (String)application.getAttribute("logonRSAPublicKey");
if(StringUtils.isBlank(logonRSAPublicKey)){
logonRSAPublicKey = RSAEncrypt.ENCRYPTPUBLICKEY;
}
//登录密码的rsa私钥
String logonRSAPrivateKey = (String)application.getAttribute("logonRSAPrivateKey");
if(StringUtils.isBlank(logonRSAPrivateKey)){
logonRSAPrivateKey = RSAEncrypt.DECRYPTPRIVATEKEY;
}
%>