- 浏览: 91519 次
- 性别:
- 来自: 大连
最新评论
文章列表
String cns[] = "c=cn, ou=comp,dc=a,dc=b, l=\"da lian\",st=hi".split(",(?=([^\"]*\"[^\"]*\")*(?![^\"]*\"))");
- 2007-05-15 12:08
- 浏览 1078
- 评论(0)
不错的,完全java实现。
如果不用ejb多好啊!
据说由于模型太过复杂。
很多人望而却步。
--------------------------------
想翻译ejbca的使用说明manual.xml。
不知能否完成。
现在完成10%!
---------------------------
User guide
EJBCA is a fully ...
- 2007-05-14 12:09
- 浏览 3666
- 评论(0)
public class CreateXmlAction extends HttpServlet {
private ServletConfig config;
public void init(ServletConfig config) throws ServletException {
this.config = config;
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, ...
- 2007-02-02 16:44
- 浏览 6242
- 评论(0)
public String getClassPath() {
String strClassName = getClass().getName();
String strPackageName = "";
if (getClass().getPackage() != null) {
strPackageName = getClass().getPackage().getName();
}
String strClassFileName = "";
if (!"".equals(str ...
- 2007-02-02 14:41
- 浏览 958
- 评论(0)
CSS中的textOverflow属性可以将过多的文字用省略号进行表示,语法如下:
html 代码
<div style="text-overflow:ellipsis;overflow:hidden;width:50px">123456789</div>
<br>
<div style="text-overflow:ellipsis;overflow:hidden;width:110px">123456789</div>
其中overflow ...
- 2007-01-30 16:29
- 浏览 7685
- 评论(0)
RSA算法基础->实践
<一>基础
RSA算法非常简单,概述如下:
找两素数p和q
取n=p*q
取t=(p-1)*(q-1)
取任何一个数e,要求满足e取d*e%t==1
这样最终得到三个数: n d e
设消息为数M (M 设c=(M**d)%n就得到了加密后的消息c
设m=(c**e)%n则 m == M,从而完成对c的解密。
注:**表示次方,上面两式中的d和e可以互换。
在对称加密中:
n d两个数构成公钥,可以告诉别人;
n e两个数构成私钥,e自己保留,不让任何人知道。
给别人发送的信息使用e加密,只要别人能用d解开就证明信息是由你发送的,构成了签 ...
- 2007-01-30 12:30
- 浏览 1167
- 评论(0)
public static String GetExceptionTrace(Throwable e) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
return sw.toString();
}
- 2006-12-21 13:34
- 浏览 884
- 评论(0)