CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - 除法

搜索资源列表

  1. jiami0

    0下载:
  2. 四种加密解密算法的源代码/*辗转相除法求a,b的最大公因数*/-four encryption and decryption algorithm source code / * division algorithm for a, b, the greatest common factor * /
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1692
    • 提供者:wt
  1. div2

    1下载:
  2. 大数除法的实现算法,不仅能实现两个大数的除法,而且能实现浮点数之间以及浮点数与整数之间的除法-majority of the division algorithm, is not only able to make large numbers of division two, but to achieve a float and between integer and floating point divider between the
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:9257
    • 提供者:赵惠
  1. bn_div

    0下载:
  2. 实现大整数的除法运算,实 现大整数的除法运算
  3. 所属分类:CA认证

    • 发布日期:2008-10-13
    • 文件大小:2874
    • 提供者:wuyuan
  1. 8086

    0下载:
  2. 8086的加法和乘法 以及除法 总线结构
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:59625
    • 提供者:罗俊金
  1. CRCProgram

    0下载:
  2. 数据包校验算法,利用除法及余数的原理来作错误侦测。
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:27586
    • 提供者:zengdongwen
  1. tangxinchun2

    0下载:
  2. 再发个大数除法,加密解密中除法一般很少使用,还是发个,可以运行的!
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1242
    • 提供者:txchgxl
  1. RSA解密和加密算法的实现和应用

    0下载:
  2. 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,
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1393
    • 提供者:胡康康
  1. CRC_matlab.CRC校验的Matlab仿真

    5下载:
  2. CRC校验的Matlab仿真,也可以认为是二进制除法。,CRC checksum of the Matlab simulation, it can be regarded as a binary division.
  3. 所属分类:加密解密

    • 发布日期:2015-04-02
    • 文件大小:2408
    • 提供者:neimty
  1. giantnumber

    0下载:
  2. 无符号大数类 实现了大数四则运算 比较 求余数 其中大数乘法采用分治 除法采用模拟竖式-No sign of large numbers class implements the large numbers seeking four more than the number of operations in which the multiplication of large numbers using analog vertical divider partition
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-25
    • 文件大小:1644
    • 提供者:傅煜
  1. CRC

    0下载:
  2. 通过对于模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)
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-26
    • 文件大小:6033
    • 提供者:lijq
  1. en2_src

    0下载:
  2. 基于二进制模2除法的简单流加解密算法。要求被加密的数据至少8字节,字节数能被4整除。 --pclion -Binary mode based on division 2 of the easy encryption and decryption algorithm flow. Require encryption of data at least 8 bytes, number of bytes to be divisible by 4.- pclion
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-17
    • 文件大小:65109
    • 提供者:pclion
  1. rsa

    0下载:
  2. 用VHDL求rsa加密系统的密钥D(辗转相除法)-Using VHDL for rsa key encryption system D(Division algorithm)
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-10
    • 文件大小:2385249
    • 提供者:齐娜
  1. fudianshu

    0下载:
  2. 用java编写的浮点数除法的运算,计算机组成原理课程设计-Prepared by floating-point division with java computing, computer architecture course design
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-01
    • 文件大小:37944
    • 提供者:caixuan
  1. RSA

    0下载:
  2. 该程序使用RSA公钥算法实现了对一个字符串的加密和解密功能。其中,采用欧几里德算法(即辗转相除法)来判断两个数是否是素数。另外,使用菜单选项来选择当前是要“加密”还是“解密”。-The program use RSA public key algorithm is presented for a string of encryption and decryption function. Among them, the Euclidean algorithm (namely division al
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-11
    • 文件大小:222759
    • 提供者:xiaoyezi
  1. calculator

    0下载:
  2. 实现计算器的功能。主要功能要求如下: ⑴ 计算任意一个常量算术表达式的加法、减法、除法以及乘法。运算数可缺省为十进制的整数和小数,其它可选项为二进制,八进制和十六进制。 ⑵ 实现计算器的其它功能,如求对数,平方根等。 ⑶ 要求使用图形界面。人机界面友好。如用户输入错误在计算之前可以修改 -Achieve the function of the calculator. The main functional requirements are as follows: ⑴ calcul
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-10
    • 文件大小:11080428
    • 提供者:yongge
  1. a

    0下载:
  2. 高精度除法求余(整数)200612119056-Precision division remainder (integer) 200 612 119 056
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-09
    • 文件大小:1743
    • 提供者:王警方
  1. ComplexCalTools

    0下载:
  2. 基于MFC的复数计算器,有加法,减法,乘法,除法,赋值,求模,求角,清除,平方,开放运算-The plural calculator, based on MFC addition, subtraction, multiplication, division, assignment, modulus, and angle, clearance, square, open operation
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-11
    • 文件大小:2418619
    • 提供者:宁儒林
  1. COSC_2425_LY_Project1

    0下载:
  2. 汇编语言的一个小程序,加法减法乘法除法的计算对于特定数字,-Assembly Language program structure, language syntax, and implementation details
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-28
    • 文件大小:68200
    • 提供者:li
  1. randtest

    0下载:
  2. 密码学教学实验工具是《密码学基础》实验教学的辅助工具软件,由DES加密算法、随机性测试、素数工具和辗转相除法四部分组成。该软件的运行平台为windows2000/2003/XP,通过执行Crypt.exe启动,包含Crypt.exe和相关库文件。(Cryptography teaching experiment tool is the auxiliary software of cryptography experiment teaching. It consists of four parts
  3. 所属分类:加密解密

    • 发布日期:2017-12-14
    • 文件大小:7583042
    • 提供者:yytam
搜珍网 www.dssz.com