搜索资源列表
RSATest
- RSA 1024位加密算法封装,算法使用big-endian编码方式。用于Windows Mobile下
RSA RSA公钥加解密算法源码
- RSA公钥加解密算法源码,VC++语言开发, 可生成最长1024比特密钥对,里面包含大数运算类,可直接移植使用。-RSA public key encryption algorithm source code, VC++ language development, can generate up to 1024-bit key pair, which contains large numbers operation classes can be directly transplanted to
RSA1024.rar
- 本程序实现了RSA(1024bits)加密解密,无论是学习还是应用,都是不错的一个程序,希望对大家有所帮助!,This procedure has RSA (1024bits) encryption and decryption, both the study or application of a procedure are good, I hope all of you to help!
RSA
- 完成1024位的RSA加解密,使用VC++开发有界面。-finish the encrypt the 1024 with RSA
1024RSA
- 支持大整数的RSA算法,还可以自动生成随机大素数-Support for large integer RSA algorithm, can also automatically generate random large prime numbers
RSA(3)
- RSA加密算法的实现 2^1024大的素数实现-implement the RSA
RSAencryptonC
- RSA算法是第一个能同时用于加密和数字签名的算法,也易于理解和操作。 RSA是被研究得最广泛的公钥算法,从提出到现在已近二十年,经历了各种攻击的考验,逐渐为人们接受,普遍认为是目前最优秀的公钥方案之一。RSA的安全性依赖于大数的因子分解,但并没有从理论上证明破译RSA的难度与大数分解难度等价。即RSA的重大缺陷是无法从理论上把握它的保密性能如何,而且密码学界多数人士倾向于因子分解不是NPC问题。RSA的缺点主要有:A)产生密钥很麻烦,受到素数产生技术的限制,因而难以做到一次一密。B)分组长度太大
4534455RSAvb
- rsa算法C++实现,实现RSA算法,密码强度1024 rsa加密/解密算法实现源码与例子 -rsa algorithm for C++ to achieve, the realization of RSA algorithm, the password strength of 1024 rsa encryption/decryption algorithm and source code examples
RSA
- RSA algorithem p=1024 bits
rsa
- 安全性大大改进,可算做能完全代替MD5的散列验证算法.-1.Large input message block size 2.provably resistant to differential attacks 3.Alternative sequential mode 4.Key input K??of up to 512 bits?? K is input to every compression function 5.1024-bit interm
RSA
- software rsa 2048bit
rsaeuro
- RSA加解密算法源码,linux下实现,支持1024密钥长度-RSA formula source code
RSA
- RSA加密算法的实现,1024位 是贷款累计发生了科技发达拉斯卡积分-RSA Encryption Algorithm, 1024 is the cumulative incidence of credit points of science and technology developed Raska
RSA
- 这是一个我自己做的rsa算法,使用的是1024位的大素数-This is one of my own compiler, the compiler compiler theory is the prototype of Kazakhstan ~~~~~
RSA
- 编程实现RSA算法。包括:生成公钥(e, n)和私钥d,对明文m加密,对密文m解密。 注:实际应用中,512比特的n 已经不够安全,所以建议公司用1024比特的n,及其重要的场合用2048比特的 n。所以大家要选择大整数n。-Programming RSA algorithm. Include: Creation of a public key (e, n) and private key d, m the plaintext encryption, decryption of cipher
RSA
- original rsa as given by rivest,shamir , and adleman. Its problems in decryption are optimized using rsa variants like crt rsa, multiprime rsa, rebalanced rsa and rprime rsa. U should give the no. of bits to be 1024 and check it on netbeans 6.5 or la
RESsecure
- 通过j2se编程实现1024位RSA加密算法,内部含有明文密文再到明文的检测测试可以快速生成密钥对-Pass the j2se plait distance realization 1024 RSA to encrypt calculate way, inner part imply a clear statement secret content again arrive clear statement of examination test can fast born and airtigh
project-report
- documentation of Implementing a 1024-bit RSA on FPGA
rsa
- 实现加解密功能,自动生成密钥,实现128,256,512,1024,2048位加解密(RSA tencrypto and tdecrypto)
rsa
- 1.问题描述 RSA密码系统可具体描述为:取两个大素数p和q,令n=pq,N=(p-1)(q-1),随机选择整数d,满足gcd(d,N)=1,ed=1 modN。 公开密钥:k1=(n,e) 私有密钥:k2=(p,q,d) 加密算法:对于待加密消息m,其对应的密文为c=E(m)=me(modn) 解密算法:D(c)=cd(modn) 2.基本要求 p,q,d,e参数选取合理,程序要求界面友好,自动化程度高。 4. 实现提示 要实现一个真实的RSA密码系统,主要考虑对大整数的处理。P