搜索资源列表
RSA_Prog
- rsa数字签名公钥加密私钥解密c++源代码-The C++ source program of RSA digital signature about encryption with public key and decryption with secret key.
混合密码体制数字签名
- JAVA实现的可以采用公钥私钥加密解密程序,包括DES,RAS算法-JAVA the private key can be the public key encryption and decryption procedures, including DES, RAS Algorithm
Key_src
- 编程中获得会话密钥匙非常重要的 MSDN 展示了一种使用私钥的方法。 但是微软的这个在MSDN中例子相当的长。 本文下面介绍的这个方法不仅更快而且更有效 -Programming cryptographic key conversation was very important MSDN demonstrated a method of using the private key. But in Microsoft'
ELGAMAL.src
- 公钥加密方式,在windows平台下运行,并且可以在不改变公钥的方式下更新私钥,速度快,使用简便。-public key encryption methods in running under windows platform, and that they could not change the way the public key to update the private key, fast, easy to use.
sll
- 一种非线性流式加密算法,对称加密,它的加密和解密都是用同一把密钥完成。对称加密比不对称加密快得多,但缺点在于,它的安全性完全依赖于保持密码的机密性。 不对称加密,它要求使用两个密钥,一个是公共的(公钥),另一个是私有的(私钥)。每个密钥都要求使用另一个密钥来解密一条消息。它的复杂性提高,因此没有普及。 -a nonlinear flow encryption algorithms, symmetric encryption, t
RAS加密解密
- RAS加密机密的dotnet例子,在TEMP目录下有PublicKey.dat和privateKey.dat为公钥和私钥-RAS encryption of confidential dotnet example, TEMP directory in a PublicKey.dat for public key and privateKey.dat and private key
signcert
- 输入“java SignCert jim.cer >1.txt”运行程序,则程序将从密钥库中取出CA的私钥对lf.cer证书进行签名,输出结果已重定向到文件1.txt中,打开1.txt文件,可以看到如下有关新的证书的信息。 -type "java SignCert jim.cer
security
- 说明: 1、里面有什么: 1.1、org.bouncycastle.*下的所有软件是bouncycastle组织开发的软件包 1.2、org.infosecurity.*下的软件包括: DES_CBC算法的实现 RSA算法的实现(包括:密钥生成、公钥加密和私钥解密、数字签名及签名验证) 数字信封的实现 利用数字信封实现大文件的加密、解密。 2、有什么用: 2.
studentinfo
- 学生信息管理系统(JBuilder x 开发,采用RSA 512位公钥加密,私钥用于找回密码,2006-4-5)-student information management system (x JBuilder development, adoption 512 RSA public key encryption, the private key used to retrieve passwords 2006-2007-4 - 5)
VC_RSA
- 一、RSA基本原理 对明文分组M和密文分组C,加密与解密过程如下: C = POW (M , e) mod n M = POW(C , d) mod n = POW(POW( M ,e), d) mod n=POW( M,e*d) 其中POW是指数函数,mod是求余数函数。 其中收发双方均已知n,发送放已知e,只有接受方已知d,因此公钥加密算法的公钥为 KU={ e , n},私钥为KR={d , n}。该算法要
7_Rsa
- RSA公钥加密算法基于大整数因式分解困难这样的事实。 选择两个素数,p,q。(一般p,q选择很大的数) 然后计算 z=p*q f=(p-1)(q-1) 选择一个n,使gcd(n,f)=1(gcd代表greatest common divider,一般n也选择一个素数), n和z就作为公钥。 选择一个s,0<s<f,满足n*s % f=1,s就作为私钥。-RSA public key encryption alg
ibe_ext
- 椭圆曲线加密算法,生成用户私钥一步的源代码-elliptic curve encryption algorithm, users private key step in generating the source code
signcryptionscheme
- :针对不可否认L-L-C-Z门限代理签密协议中存在的安全缺陷,提出了一个改进的门限代理签密协议.通过 对L-L-C-Z门限代理签密协议的密码分析,利用接收方修改公钥的方法,计算出任意消息的有效伪造签密结果.利 用类似于缩短的数字签名标准(SDSS)的安全技术,以及通过公钥验证签密结果的技术,给出一个新的改进协议.安 全分析结果表明,与L-L-C-Z门限代理签密协议相比,该改进门限代理签密协议能够承受接收方公钥替换攻击.改进的
ELGAMAL.src
- 公钥加密方式,在windows平台下运行,并且可以在不改变公钥的方式下更新私钥,速度快,使用简便。-public key encryption methods in running under windows platform, and that they could not change the way the public key to update the private key, fast, easy to use.
RSAtool
- 这学期刚学密码学,RSA算法相对简单,于是写了这个小软件.开发环境:VC++6.0。 RSA的安全性依赖于大数分解。公钥和私钥都是两个大素数。据猜测,从一个密钥和密文推断出明文的难度等同于分解两个大素数的积。 数据加密算法RSA的关键在于大素数的生成,本软件采取数组形式解决大素数的存储和运算问题,可生成超过1024位的十进制数的大素数,以应用于数据加密。 RSA的缺点主要有:产生密钥很麻烦,受到素数产生技术的限制,因
javacertificationoperations
- java公钥加密私钥解密与数字证书的一个例子,很实用的。-java public key encryption and digital certificate private key to decrypt an example, it is practical.
RSA
- 实现RSA的公钥加密,私钥解密;私钥加密,公钥解密。不限制加密原文长度,支持中文-failed to translate
RsaPublicKey
- RSA公钥算法 随机选取大素数,用于密钥加解密,公钥是公开的,私钥自己保存-RSA PublicKey
rsa
- 用JAVA编写的一个加解密程序,可自动生成公钥、私钥-Prepared using JAVA encryption and decryption of a program that automatically generates a public key, private key
RSA签名验签工具windows_V1.4
- 支付宝签名、验签、RSA、RSA2公钥、私钥一键生成等工具(Alipay signature, check, RSA, RSA2 public key, private key, one key generation and other tools.)