资源列表
杰奇1.7 程序解密 完整版
- 杰奇1.7 程序源码解密, 希望能让大家用的上(Jackie 1.7 program source code decryption, I hope to let everyone use it)
base64
- C语言实现base64加解密,直接编译可使用,亲测好用(C Language implementation plus decryption.)
Encrypt
- DES加密解密算法,用于实现本地密码加密存储(DES encryption and decryption algorithm)
DES
- DES、3DES加密解密算法,标准C编程,适合所有平台。测试程序为VS2010。运算Des\Debug\Des.exe文件,代码文件为Des-Code.cpp和Des_head.h(DES, 3DES encryption and decryption algorithm, standard C programming, suitable for all platforms. The test program is VS2010. Operation Des\Debug\Des.exe, the
text_1
- 该程序针对图像近似系数和高频系数进行加密,以达到加密的效果(The program encrypts the image approximation coefficient and the high frequency coefficient to achieve the encrypted effect.)
HexEnc_demo
- [rc] Includes rc2, rc4, rc5, rc6 the algorithm rc algorithm gathers [rc5] RC5 Image encryption in matlab [Raji-mam] image compression and encryption
HexEnc_src
- rc5 code source code available in .net.you can try all the stuffs here by implementing in the format available
Encryp_RSA
- acheive RSA algorithm in matlab
SHA_MatLab
- this code excutes SHA-1 Algo
国密算法_SM2_SM3
- 国密算法SM2 SM3 DEMO c#实现(Implementation of national dense algorithm SM2 SM3 DEMO c#)
IDEAXM
- IDEA加解密代码,使用的是java源代码,非常容易加密。(IDEA encryption code, the use of the Java source code, very easy to encrypt.)
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