资源简介
来自StackOverflow的 Jeffrey Walton 的文章中dsa数字签名算法的java实现,包括生成签名,消息签名,验证签名三个功能的实现。
代码片段和文件信息
package JavaInteropSign;
import java.io.*;
import java.security.*;
import java.security.spec.*;
import javax.swing.JOptionPane;
/**
* @author jeffrey walton
**/
public class Main {
static String ALGORITHM = “DSA“;
public static void main(String[] args) {
try {
CreateDSAKeys();
SignDSAMessage();
VerifyDSAMessage();
} catch (Exception e) {
System.err.println(“Main: Exception “ + e.toString());
}
}
private static void VerifyDSAMessage() {
try {
// Load the public
PublicKey publicKey = LoadPublicKey(“public.dsa.java.key“);
// Load the message from file
FileInputStream mis = new FileInputStream(“dsa.java.msg“);
byte[] message = new byte[mis.available()];
mis.read(message); mis.close();
// Display the resurrected string
JOptionPane.showMessageDialog(null
new String(message 0 message.length “UTF-8“));
// Load the signature of the message from file
FileInputStream sis = new FileInputStream(“dsa.java.sig“);
byte[] signature = new byte[sis.available()];
sis.read(signature); sis.close();
// Initialize Signature object
Signature verifier = Signature.getInstance(ALGORITHM);
verifier.initVerify(publicKey);
// Load the message into the Verifier object
verifier.update(message);
// Verify the Signature on the Message
boolean result = verifier.verify(signature);
StringBuilder sb = new StringBuilder();
if( result )
{
sb.append(“Message Verified:\n“);
sb.append(new String(message 0 message.length “UTF-8“));
}
else
{
sb.append(“Message Not Verified“);
}
JOptionPane.showMessageDialog(null sb.toString());
} catch (Exception e) {
System.err.println(“VerifyDSAMessage: “ + e.toString());
}
}
private static void SignDSAMessage() {
try {
// Retrieve the Private Key
PrivateKey privateKey = LoadPrivateKey(“private.dsa.java.key“);
// Create the signer object
Signature signer = Signature.getInstance(ALGORITHM);
signer.initSign(privateKey new SecureRandom());
// Prepare the Message
String s = “Crypto Interop: \u9aa8“;
// Save the binary of the String which we will sign
byte[] message = s.getBytes(“UTF-8“);
// Insert the message into the signer object
signer.update(message);
byte[] signature = signer.sign();
// mos: message filestream
// sos: signature filestream
FileOutputStream mos = new FileOutputStream(“dsa.java.msg“);
mos.write(message);
FileOutputStream sos = new FileOutputStream(“dsa.java.sig“);
sos.write(signature);
} catch (Exception e) {
System.err.println(“SignDSAMessage: “ + e.toString());
}
}
private static PublicKey LoadPublicKey(String filename) {
PublicKey key = null;
try {
FileInputStrea
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-04-25 23:17 JavaInteropSign\build\
目录 0 2008-04-25 23:17 JavaInteropSign\build\classes\
目录 0 2008-04-25 23:17 JavaInteropSign\build\classes\JavaInteropSign\
目录 0 2008-04-25 23:17 JavaInteropSign\build\test\
目录 0 2008-04-25 23:17 JavaInteropSign\build\test\classes\
目录 0 2008-04-25 23:17 JavaInteropSign\build\test\results\
文件 85 2008-04-25 19:17 JavaInteropSign\manifest.mf
目录 0 2008-04-25 23:17 JavaInteropSign\nbproject\
文件 33178 2008-04-25 19:17 JavaInteropSign\nbproject\build-impl.xm
文件 455 2008-04-25 19:17 JavaInteropSign\nbproject\genfiles.properties
目录 0 2008-04-25 23:17 JavaInteropSign\nbproject\private\
文件 188 2008-04-25 19:17 JavaInteropSign\nbproject\private\private.properties
文件 1824 2008-04-25 19:17 JavaInteropSign\nbproject\project.properties
文件 585 2008-04-25 19:17 JavaInteropSign\nbproject\project.xm
目录 0 2008-04-25 23:17 JavaInteropSign\src\
目录 0 2008-04-25 23:17 JavaInteropSign\src\JavaInteropSign\
文件 5070 2008-04-25 23:12 JavaInteropSign\src\JavaInteropSign\Main.java
目录 0 2008-04-25 23:17 JavaInteropSign\test\
目录 0 2008-04-26 10:48 JavaInteropSign\
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论