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

搜索资源列表

  1. JavaFR_RSA_Source

    0下载:
  2. 基于java的完整的RSA算法实现 /** * <p>Titre : RSA </p> * <p>Descr iption : Encodage de donn閑s selon le protocole RSA </p> * <p>Copyright : Copyright (c) 2004</p> * @author Fran鏾is Bradette * @version 1.1 * version originale d
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:15588
    • 提供者:某男
  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. 300_encrypt

    0下载:
  2. 加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests:
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:389062
    • 提供者:Nikii
  1. 7_Rsa

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

    • 发布日期:2008-10-13
    • 文件大小:81637
    • 提供者:fasf
  1. EnumCSP_src

    0下载:
  2. EnumCSP - Enumerates Crypto Service Providers Copyright (c) 2000-2004 G.Chapillon <GChapillon@aol.com> All Rights Reserved. Contributor: Jupiter <by.Jupiter@Gmail.com>
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:12529
    • 提供者:李泉
  1. 2--10

    0下载:
  2. 16<->10转换1 6<->10转换16<->10转换
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:406758
    • 提供者:许尚敏
  1. cvery_292612038

    0下载:
  2. 1.(3-38)本实验练习的目标是实现一种错误检测机制,它使用了本章中介绍的标准CRC算法。请编写两个程序:生成器generator和验证器verifier,生成器程序从标准输入读入一个n位的报文,该报文是由0和1组成的ASCII文本字符串,它是第一行,第二行是k位的多项式,也是ASCII文本。该程序输出一行ASCII文本(到标准输出),其中包含n十k个0和1,代表了要被传输的报文。然后.它也输出多项式,就好像它读入进来时一样。验证器程序将生成器程序的输出读入进来,并输出一条报文,说明它是正确的
  3. 所属分类:加密解密

    • 发布日期:2014-01-18
    • 文件大小:13502
    • 提供者:Wei Xiang
  1. 2008516

    0下载:
  2. 实用c程序:16进制<->10进制互换程序 89C51系列CPU编程器接收CPU程序 HT1380实时时钟驱动程序 单个汉字库字摸提取程序,tc2.0编译 按键扫描驱动程序
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:8169
    • 提供者:冀光辉
  1. DSA

    0下载:
  2. Digital Signature Algorithm (DSA)是Schnorr和ElGamal签名算法的变种,被美国NIST作为DSS(DigitalSignature Standard)。算法中应用了下述参数: p:L bits长的素数。L是64的倍数,范围是512到1024; q:p - 1的160bits的素因子; g:g = h^((p-1)/q) mod p,h满足h < p - 1, h^((p-1)/q) mod p > 1; x:x
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:136954
    • 提供者:wildkaede
  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. MD5ArchiveValidator

    0下载:
  2. 一个命令行下的MD5校验工具 ,用法:MD5AV [-c] [-f<FolderName>] [-h] [-n<FileName>] [-o<OutputFolder>] [-r] [-v] [-x<FolderName]-MD5ArchiveValidator (MD5AV) is a utility to confirm the accurate storage of files through MD5 Checksums. For each fil
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:88466
    • 提供者:天诛
  1. IP-MAC--MacBind

    0下载:
  2. IP MAC绑定,针对网卡MAC值绑定,对局域网限制管理有用-This s <IP MAC MacBind.zip>,maybe you need it.
  3. 所属分类:Crack_Hack

    • 发布日期:2015-05-24
    • 文件大小:541696
    • 提供者:tingo
  1. leftrotate

    0下载:
  2. 完成基本左移功能。aXORb<<b,然后aXORb<<a,也就是说a,b都是dependent data-Completion of the basic functions of the left. aXORb
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-01
    • 文件大小:846
    • 提供者:laSiA
  1. rightrotate

    0下载:
  2. a XOR b> a,然后a XOR b< b,and both a and b are dependent data-a XOR b
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:840
    • 提供者:laSiA
  1. CRC

    0下载:
  2. 运用编写了《循环冗余校验(CRC)编程测试软件》,此软件主要是测试CRC计算和编程的正确与否。 文章附有源代码。-Prepared to use < Cyclic Redundancy Check (CRC) program to test the software> that this software is to test the CRC calculation and the correctness of the program. Article with the sourc
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-03
    • 文件大小:194739
    • 提供者:梁丹
  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-28
    • 文件大小:5200
    • 提供者:nb
  1. XML

    0下载:
  2. Secure Socket Layer (SSL) and Transport Layer Security (TLS) are the current standards for communicating information securely over the internet. With TLS, all data being transmitted from point A to point B is encrypted. What if we only want some of o
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-24
    • 文件大小:7834
    • 提供者:Tong Liu
  1. 07

    0下载:
  2. des加密 ElGamal算法既能用于数据加密也能用于数字签名,其安全性依赖于计算有限域上离散对数这一难题。   密钥对产生办法。首先选择一个素数p,两个随机数, g 和x,g, x <p, 计算 y = g^x ( mod p ),则其公钥为 y, g 和p。私钥是x。g和p可由一组用户共享。 -des cipher
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-13
    • 文件大小:3319493
    • 提供者:rock
  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. 200601220942288253

    0下载:
  2. ElGamal算法既能用于数据加密也能用于数字签名,其安全性依赖于计算有限域上离散对数这一难题。   密钥对产生办法。首先选择一个素数p,两个随机数, g 和x,g, x < p, 计算 y = g^x ( mod p ),则其公钥为 y, g 和p。私钥是x。g和p可由一组用户共享。   ElGamal用于数字签名。被签信息为M,首先选择一个随机数k, k与 p - 1互质,计算 -首先选择一个随机数k, k与 p- 1互质,计算   a = g^k ( mod p )
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-10
    • 文件大小:2521051
    • 提供者:崔光涛
« 12 »
搜珍网 www.dssz.com