CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - Rsa.d

搜索资源列表

  1. VC_RSA

    0下载:
  2. 一、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}。该算法要能用做公钥加密,必须满足下列条件: 1. 可以找到e ,
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:5523
    • 提供者:烟翔
  1. rsa_code

    0下载:
  2. rsa算法,这里将给出一个简单加密模块的全部源程序(源代码) 至于RSA的理论网上一大把,它是基于公钥加密体制的一种算法。这个实例主要是用来将某一重要文件绑定到一个IP地址上。把它拷贝下来,存为CODE.C,然后执行 GCC –O CODE CODE.C 然后用./ CODE E [IP ADDRESS] [FILENAME]对文件进行加密。或用 ./CODE D [IP ADDRESS] 进行解密整个过程中产生了两个中间文件,至于什么文件,你去试
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1509
    • 提供者:潘伟波
  1. RSA-lx

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

    • 发布日期:2008-10-13
    • 文件大小:172963
    • 提供者:李湘
  1. RSA加长分段解密

    0下载:
  2. RSA加长分段解密算法,界面操作。算法步骤如下:1. 读取私钥d和n,作解密之用。 2. 从EncText中读取一大段密文,再把该大段密文分成若干小段密文。 3. 使用d和n把所有小段密文进行解密成对应的小段密文sectByte[],再合成一大段明文字节数组Byte[],并转化成大段明文添加到DecText。 4. 读取下一大段密文,若密文为空,完成解密;否则转2-RSA decryption algorithm lengthened section, the interface operati
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:33550
    • 提供者:何泽荣
  1. RSA_Dll

    0下载:
  2. 利用MIRACL大数运算库实现的RSA加密的动态链接库,读者在编译时需要重新加载MIRACL库。-MIRACL library to use computing to achieve large numbers of RSA encryption dynamic-link library, readers need to reload when compiling MIRACL library.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-21
    • 文件大小:147269
    • 提供者:gengqin
  1. rsa

    0下载:
  2. 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
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:6722
    • 提供者:阿达悟
  1. BasicRSA_latest.tar

    0下载:
  2. RSA ( Rivest Shamir Adleman )is crypthograph system that used to give a secret information and digital signature . Its security based on Integer Factorization Problem (IFP). RSA uses an asymetric key. RSA was created by Rivest, Shamir, and Adleman i
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:5200
    • 提供者:nb
  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. RSA

    1下载:
  2. RSA算法实验报告和代码 1.选取两个素数p,q(不可相差悬殊) 2.计算n=pq,f(n)=(p-1)(q-1) 3.选取e,满足1<e<f(n),则gcd(e,f(n))=1 4.计算d,满足de=1 mod f(n)。一般d>=[n的四分之一方],(e,n)为公钥,(p,q,d)为私钥,将明文0,1序列分组,使每组十进制小于n。c=[m的e次方] mod n,m=[c的d次方] mod n。-RSA algorithm and code an experi
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-24
    • 文件大小:82096
    • 提供者:jhp627
  1. RSA

    0下载:
  2. encrypt-decrypt with RSA algorithm. implementation encryption algorithm with RSA method. using public key and private key. first, generate public and private key with generate.php. you will get e,d, and n. for encrypt, use the e and n for private and
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-04
    • 文件大小:8371
    • 提供者:wahyu
  1. RSA

    0下载:
  2. 编程实现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
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-31
    • 文件大小:44903
    • 提供者:semmir
  1. RSA

    0下载:
  2. RSA 原理: 选取两个不同的大素数p、q,并计算N=p*q 选取小素数d,并计算e,使d*e (p-1)(q-1)=1 -RSA works: select two different large prime numbers p, q, and compute N = p* q Select the small prime d, and calculate the e, so d* e (p-1) (q-1) = 1
  3. 所属分类:MPI

    • 发布日期:2017-04-02
    • 文件大小:614
    • 提供者:董然
  1. RSA

    0下载:
  2. downlad aja gan gratis kok :D
  3. 所属分类:matlab

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

    0下载:
  2. RSA 金鑰 用以下的方式來產生一個公開金鑰和一個私密金鑰: 1. 隨機選擇兩個的質數p和q,p不等於q,計算N=p*q。 2. 選擇一個整數e,e與(p-1)*(q-1)互質,並且e小於(p-1)*(q-1) 。 3. 求一個值 d,d<(p-1)*(q-1),且(d*e)除以((p-1)*(q-1)) 的結果,其餘數為 1。 4. 將p和q的記錄銷毀。-RSA keys in the following way to generate a public key an
  3. 所属分类:JavaScript

    • 发布日期:2017-11-14
    • 文件大小:369239
    • 提供者:vicky
  1. RSA

    1下载:
  2. RSA 数字签名的基本思想 RSA数字签名的安全性依赖于大数分解的困难性。 1、参数与密钥生成 首先选取两个大素数p和q,计算 n=pq 其欧拉函数值 (p-1)*(q-1) 然后选取随机整数e,满足 gcd(e,(p-1)*(q-1)))=1 并计算 d=e^-1 mod((p-1)*(q-1)) 则公钥为(e,n),私钥为d;p,q是秘密参数,需要保密。如不需要 保存,计算出e,d后可销毁。 2、签名算法 设
  3. 所属分类:Communication-Mobile

    • 发布日期:2016-12-12
    • 文件大小:1024
    • 提供者:zzq
  1. RSA(C)

    0下载:
  2. RSA D-H加密与解密算法,C语言实现-RSA DH encryption and decryption algorithm, C language
  3. 所属分类:CA program

    • 发布日期:2017-11-30
    • 文件大小:5249
    • 提供者:刘思琪
  1. RSA-CPP

    0下载:
  2. RSA算法非常简单,概述如下: 找两素数p和q 取n=p*q 取t=(p-1)*(q-1) 取任何一个数e,要求满足e<t并且e与t互素(就是最大公因数为1) 取d*e t==1 这样最终得到三个数: n d e 设消息为数M (M <n) 设c=(M**d) n就得到了加密后的消息c 设m=(c**e) n则 m == M,从而完成对c的实现-RSA algorithm is very simple, are summarized as follows: find two prim
  3. 所属分类:assembly language

    • 发布日期:2017-11-14
    • 文件大小:1710
    • 提供者:wang
  1. encryption-rsa-avec-biginteger

    0下载:
  2. Mon programme encrypte les fichiers avec l algorithme d encryptions rsa, mais en utilisant java
  3. 所属分类:Crypt_Decrypt algrithms

  1. RSA

    1下载:
  2. 利用C\C++实现RSA算法的加、解密运算。 具体包括: 1)利用扩展的Euclid计算 a mod n 的乘法逆元; 2)Miller-Rabin素性测试算法对一个给定的大数进行测试; 3)实现的运算,并计算; 4)利用Euler定理手工计算,并与3)计算的结果对比; 5)实现RSA算法。并对 I LOVE NANJING UNIVERSITY OF AERONAUTICS AND ASTRONAUTICS 加解密。说明:为了方便实现,分组可以小一点,比如两个字母一组。
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-12
    • 文件大小:1415
    • 提供者:刘洋
  1. rsa

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

    • 发布日期:2018-04-29
    • 文件大小:1108992
    • 提供者:Appoint
« 12 »
搜珍网 www.dssz.com