- 浏览: 746675 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (419)
- 杂软粉墨 (2)
- 创意灵感 (3)
- 经验记录 (137)
- 开源轨迹 (2)
- sip-communicator (2)
- 闲侃杂谈 (8)
- 问题交流 (24)
- 概念模式 (32)
- 难点备案 (5)
- JwChat (1)
- 中国象棋 (1)
- 教育探索 (6)
- 英语研究 (58)
- 星际争霸 (1)
- 电信知识 (1)
- 软件架构 (3)
- 哲学探索 (26)
- 算法灵魂 (8)
- 近视探索 (6)
- 数学数学 (3)
- 牛角钻尖 (23)
- 至强文言 (3)
- 数据结构 (1)
- 宇宙物理 (2)
- 网络架构 (3)
- 游戏领域 (4)
- 图形处理 (2)
- 修炼之路 (8)
- 读书天地 (20)
- 编解乱码 (2)
- 概念探索 (8)
- 格物致知 (1)
- 其它语言 (1)
- 测试领域 (3)
- 文化风流 (1)
- JQuery (1)
- 網頁領域 (1)
- Unix/Linux (1)
- Inside JVM (1)
- 异常分析 (1)
最新评论
-
suyujie:
引用
HTML <a> 标签灰显禁用 -
suyujie:
HTML <a> 标签灰显禁用 -
suyujie:
HTML <a> 标签灰显禁用 -
suyujie:
HTML <a> 标签灰显禁用 -
iamzhoug37:
您能说一下"局部变量不受文本顺序限制" 是 ...
声明前为什么能赋值却不能输出,都是使用
A signature provides two security services, authentication and integrity. A signature gives you assurance that a message has not been tampered with and that it originated from a certain person. As you'll recall from Chapter 2, a signature is a message digest that is encrypted with the signer's private key. Only the signer's public key can decrypt the signature, which provides authentication. If the message digest of the message matches the decrypted message digest from the signature, then integrity is also assured.
Signatures do not provide confidentiality. A signature accompanies a plaintext message. Anyone can intercept and read the message. Signatures are useful for distributing software and documentation because they foil forgery.
http://oreilly.com/catalog/javacrypt/chapter/ch06.html
import java.security.InvalidKeyException; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.NoSuchAlgorithmException; import java.security.PrivateKey; import java.security.PublicKey; import java.security.Signature; import java.security.SignatureException; public class Test { public static void main(String args[]) { try { // 1. Get the bytes in the Message. String strMessage = " Hello World !"; byte[] bMessage = strMessage.getBytes(); // 2. Get the PrivateKey and the PublicKey. KeyPair keyPair = KeyPairGenerator.getInstance("DSA") .generateKeyPair(); PrivateKey privateKey = keyPair.getPrivate(); PublicKey publicKey = keyPair.getPublic(); // Incorrect Public Key KeyPair keyPairIncorrect = KeyPairGenerator.getInstance("DSA") .generateKeyPair(); PublicKey publicKeyIncorrect = keyPairIncorrect.getPublic(); // 3. Encrypt the Data. Signature signature = Signature.getInstance("DSA"); signature.initSign(privateKey); signature.update(bMessage); // 4. Get the Signature, by signing the message. byte[] bSignature = signature.sign(); // 5. Decrypt the Signature with the Public Key and get the Message // Digest. Signature signaturePublic = Signature.getInstance("DSA"); // 6. Authentication signaturePublic.initVerify(publicKey); signaturePublic.update(bMessage); // 6. Check if the Signatures Match. boolean b = signaturePublic.verify(bSignature); if (b) { System.out.println(" The Signature is Good " + b); } else { System.out.println(" The Signature is Bad " + b); } } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } catch (SignatureException e) { e.printStackTrace(); } catch (InvalidKeyException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } }
发表评论
-
关于方法访问控制符protected
2012-11-29 10:38 1261http://bbs.csdn.net/topics/3902 ... -
一个基本问题关于引用的
2012-05-15 10:20 1126问: int a = 1; Integer b = new ... -
我對面向對象和過程的理解。
2012-05-02 08:30 1065我的一些理解。 面向过程,是对客观现象的描述,感觉是有一个上 ... -
stack and heap
2012-01-13 23:17 1050我觉得是根据应用方式 和本身特性 才将内存分区的,目的是提 ... -
program experience conclusion
2011-07-11 15:35 10621. check parameters for validit ... -
PreparedStatement's possible designated parameter
2011-04-29 13:45 985though it's nearly impossible t ... -
clean Log4j
2011-04-12 11:19 1065import org.apache.log4j.BasicCo ... -
about abstract class
2011-04-02 10:34 866yes, we do know abstract class ... -
cvs operations on linux
2011-03-25 09:40 1009http://www.linuxhowtos.org/Syst ... -
regex to exchange two parts
2011-03-24 17:09 1087public class Test { public ... -
About the database locking
2011-03-09 11:02 962http://en.wikipedia.org/wiki/Lo ... -
how to send soap message in java
2011-03-08 10:29 1894import java.io.BufferedReader; ... -
About ShutDownDemo
2011-03-07 15:02 980public class ShutdownDemo { p ... -
How do you know if an explicit object casting is needed
2011-02-24 16:33 1186通俗来讲,不可能将一只是猫的动物强转为狗 再说Graphic ... -
有关MimeUtility
2011-02-24 13:11 3360import java.io.UnsupportedEncod ... -
C#连接sql server 2008的一件2事
2011-02-24 09:01 2151once upon a time, i came upon o ... -
Shadowing, Overriding, Hiding and Obscuring
2011-02-22 15:15 1163当子类属性与父类属性重叠时 这种叫法上是shadowi ... -
JAXP usage
2011-02-16 16:07 1096import java.io.ByteArrayInputSt ... -
运行一个类,如果classpath中路径带空格就加双引号
2011-02-11 11:25 2805注意是这样加: java -cp .;"d:\my ... -
关于ClassPath中的current directory
2011-01-28 16:40 1152Given: 1. package com.company. ...
相关推荐
Cryptography库是一个强大的安全加密库,提供了各种密码学算法和协议,如哈希函数、对称加密、非对称加密以及数字签名等。对于运行Python 2.7的离线环境来说,安装这个库可能具有挑战性,因为通常我们会依赖于`pip`...
Cryptography库是Python中的一个核心组件,它提供了强大的加密和安全功能,使得开发者可以构建安全的应用程序。在离线环境下安装Python库可能会遇到挑战,但通过正确的方法,即使是Cryptography这样的库也能顺利安装...
Real-World Cryptography Real-World Cryptography是一本关于密码学的书籍,由David Wong撰写。密码学是一门广泛应用于信息安全领域的学科,旨在保护信息的机密性、完整性和认证性。该书籍旨在为读者提供实用的密码...
《深入解析cryptography-1.9:Python加密编程的核心库》 在当今信息化社会,数据安全与隐私保护显得尤为重要,而加密技术则是保障信息安全的重要手段。在Python编程领域,cryptography是一个广泛使用的加密库,提供...
Python中的cryptography库是一个强大的加密库,它提供了各种加密算法和功能,包括使用OpenSSL生成的密钥进行加密和解密。OpenSSL是一个开源的工具集,广泛用于生成和管理加密密钥,证书等。 首先,我们需要理解密钥...
**PyPI 官网下载 | cryptography-0.5.tar.gz** `cryptography-0.5.tar.gz` 是一个从Python的官方包管理平台PyPI(Python Package Index)下载的压缩包,它包含了`cryptography`库的0.5版本。这个库是用于Python的...
Java Cryptography Extension (JCE) 是Java平台的一个重要组件,主要负责提供强大的加密算法和安全服务,用于开发安全的应用程序。在Java 8中,JCE扮演着核心角色,允许开发者执行加密操作,如数据加密、解密、数字...
**PyPI 官网下载 | cryptography-2.6.1-cp37-cp37m-win_amd64.whl** 在Python编程环境中,`PyPI`(Python Package Index)是官方的软件仓库,提供了丰富的第三方库供开发者使用。`cryptography`库是一个重要的安全...
《Introduction to Modern Cryptography》一书提供了现代密码学的rigorous yet accessible treatment。以下是书中的一些关键知识点: 私钥密码学 私钥密码学是指使用同一个密钥进行加密和解密的密码学。书中详细...
《Python中的Cryptography库:36.0.1版本解析》 在Python的开发领域,安全性和加密技术是至关重要的部分。Cryptography库是Python中一个强大的加密工具,提供了多种安全算法,包括对称加密、非对称加密、哈希函数...
《PyPI官网下载的cryptography库详解》 在Python编程领域,PyPI(Python Package Index)是广大开发者获取和分享Python库的重要平台。本篇文章将深入解析标题为"PyPI 官网下载 | cryptography-3.4.8-cp36-abi3-...
**Python库 | cryptography-3.0-cp35-cp35m-win_amd64.whl** 在Python编程环境中,库是扩展功能的关键组成部分,它们提供了预编写的功能,使得开发者能够快速有效地实现各种任务。`cryptography`库是Python中一个...
Cryptography or cryptology is the practice and study of techniques for secure communication in the presence of third parties called adversaries. More generally, cryptography is about constructing and...
《cryptography-1.5.2.tar.gz:Python加密库与Scrapy框架的结合》 在信息技术领域,安全性和隐私保护是至关重要的议题。在这个背景下,`cryptography`库应运而生,它是一个用于Python的强大的加密和密码学处理库。`...
Beginning Cryptography with Java While cryptography can still be a controversial topic in the programming community, Java has weathered that storm and provides a rich set of APIs that allow you, the ...
在介绍中提到的电子书《An Introduction to Number Theory with Cryptography》第二版,是一本经典著作,它探讨了数论的基本原理,并展示了这些原理是如何在现代密码学中得到应用的。 从给出的内容来看,此电子书...
《Python库cryptography-2.4.1:深入解析与应用》 在Python的世界里,cryptography库是一个不可或缺的安全工具,它提供了高级别的加密、哈希、编码和身份验证功能,使得开发者能够安全地处理敏感数据。这个资源,...
**Python库 | cryptography-36.0.0-cp36-abi3-win_amd64.whl** 本文将深入探讨Python中一个重要的安全库——`cryptography`,特别是其版本36.0.0。这个库是Python开发语言中的核心组件,用于处理加密、解密、数字...