搜索资源列表
dess.zip
- Fast DES kit - Phil Karn, KA9Q September 2, 1994 This archive includes optimized DES code in portable C, Borland inline assembler for the 386, and GNU 'as' format assembler for the 386. Contents: readme - this file readme.des - details on
P-Pass
- 想知道程序是如何实现加密解密的嘛? 那么来下载去看看吧,简单易懂,不懂你砸我!-procedures want to know is how to achieve encryption and decryption of incorrect? So to download and end, simple, but not you hit me!
s-zhihuan
- 从一个随机文件读取256字节数据形成数据区DArea,再应用洗牌法所给的方法生成0~255的一个全排列DTab。试分别写出\"求DArea中全部数据经 (1)以DTab为S-盒; (2)以DTab为P置换 -from a random file read 256 byte data area DArea form data, re-shuffling in law application to the formation of 0 ~ 255 DTab a full array. T
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 algorithm based on the integer fa
RSA解密和加密算法的实现和应用
- RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a,
rsa1l
- /* RSA Demo 1.0 版 * 版权所有 (C) 2004 赵春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程序调用Miracl ver 4.82大数运算库,详见其附带手册。 * P,Q,N,D,E使用RSATool2生成。 */ 编译提示: 一:将Project-Settings-Settings For(All Configuration)-C/C++中Category项的 Precompiled He
RSA-lx
- /* RSA Demo 1.0 版 * 版权所有 (C) 2004 赵春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程序调用Miracl ver 4.82大数运算库,详见其附带手册。 * P,Q,N,D,E使用RSATool2生成。 */ 编译提示: 一:将Project-Settings-Settings For(All Configuration)-C/C++中Category项的 Precompiled He
S盒的线性逼近表
- 此为密码攻击中的线性分析,通过对S盒的分析,来达到对S-P密码体制的攻击-password for this attack linear analysis of the S-box analysis, in order to achieve the S-P Cryptosystem attack
SPN加密
- 此代码实现S-P密码的加密解密,在这个实验中用到了S盒和P盒随机发生器-this code to achieve S-P password encryption and decryption, in this experiment uses S boxes and boxes of random generator P
mulf2m.rar
- 椭圆曲线加密算法中的乘法器的生成,主要功能是实现在素域上的多项式模P(大素数)乘的运算。,Elliptic curve encryption algorithm to generate the multiplier, the main function is to achieve in the Su-domain polynomial module P (large prime numbers) by the operator.
ALPU
- ALPU加密芯片历经ALPU-04,-05,-B,-E,-MT/MR几个系列的发展,加密性能以及相关技术参数已经趋于完善,可以足够程度的满足客户各类需求。 公司产品使用AES-128对称加密技术,具有很强的加密性能以操作上的灵活性。 相比其他公司的加密芯片,ALPU加密芯片有很高的技术优势。 公司现行推出的产品主要有ALPU-MT,ALPU-MR,ALPU-P以及ALPU-M几款,不同型号的产品在市场定位以及操作模式上有很大出入,具体如下: 供应Neowin
A-PAINLESS-GUIDE-TO-CRC-ERROR-DETECTION-ALGORITHMS
- A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS CRC校验理论与实践的经典教程,Ross写的。-A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS CRC checksum of the classic theory and practice tutorials, Ross wrote.
CRC
- 通过对于模2除法的研究 可以得到如下方法: 1. 把信息码后面加上p-1位的0,这个试验中p是6位,即在输入的信息码后面加上“00000”。把这个17位的被除数放入input中。 2. 在得到被除数input之后,设计一个在被除数上移动的数据滑块变量d,把input中的最高位开始逐次复制给变量d。 3. 如果d的最高位为1,由变量d和变量p做异或运算;如果d的最高位为0则不运算或者做多余的异或‘0’的运算。 4. 把滑块变量d往后滑动一位。 5. 循环步骤(3,4)
rsa
- 1) 找出两个相异的大素数P和Q,令N=P×Q,M=(P-1)(Q-1)。 2) 找出与M互素的大数E,用欧氏算法计算出大数D,使D×E≡1 MOD M。 3) 丢弃P和Q,公开E,D和N。E和N即加密密钥,D和N即解密密钥。 -1) to identify two different large prime numbers P and Q, so N = P × Q, M = (P-1) (Q-1). 2) to identify and M large numbers cop
RSA
- RSA公钥加密的基本实现 bmp灰度图片加解密操作包括 RSA 的加减密算法; 素数检测算法;RSA 密钥生成算法; 应用该 RSA 密码体制加、解密; BMP 灰度图的算法; Pollard p-1 算法 ; Pollard r 算法 ; -RSA public key encryption to achieve the basic gray-scale picture bmp including RSA encryption and decryption operations of addi
ibe.tar
- IBE加密算法的入门文章Identity-Based Encryption from the Weil Pairing-IBE encryption algorithm of the article Introduction to Identity-Based Encryption from the Weil Pairing
new_code
- 机顶盒卡通讯代码,主要工作是读取卡内的基本信息,如卡号、运营商等信息,在智能卡 Reset 后必须首先执行,之后才可以执行其他的命令 -Communications set-top box card code, the main task is to read the card' s basic information, such as card numbers, operators and other information, after Reset in a smart card mu
VB.Decompiler.Pro.v7.7.RETAIL.INCL.KEYGEN-FFF-[OYK
- P-Code decoding started and image extraction. Numerous bug fixes. Event detection added. Dll and OCX Support added. External Components added to vbp file. Begun work on a basic antidecompiler. Form property editor, complete with a
C-P-P-source-file-encryption-code
- 文件加密C++源代码,对加密进度条进度设置,同时,对文件进行解密。-C++ source file encryption code, the progress bar on the progress of setting encryption, the same time, to decrypt the file.
AfxMsgMap
- 用户解析MFC程序的MsgMap表格 快捷键“Alt-P”来解析MsgMap。 快捷键“Shift-P”来搜索并解析MsgMap。 -Users MsgMap MFC program forms Shortcut key "Alt-P" to resolve the MsgMap. Shortcut key "Shift-P" to search and parse MsgMap.