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

搜索资源列表

  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. 75-dFile

    0下载:
  2. DES( Data Encryption Standard)算法,于1977年得到美国政府的正式许可,是一种用56位密钥来加密64位数据的方法。 IDEA是International Data Encryption Algorithm 的缩写,是1990年由瑞士联邦技术学院来学嘉X.J.Lai 和Massey提出的建议标准算法称作PES( Proposed Encryption Standard) 。Lai 和Massey 在1992 年进行了改进强化了抗差分分析的能力改称为IDEA 它
  3. 所属分类:加密解密

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

    0下载:
  2. 密码学实验课的程序,此代码是求整数a相对另一个整数m求逆,如输入7 25,求7相对25的逆-Cryptography experimental Office s procedures, the code is for a relative of another integer integer m inversion, such as the importation of 7 25, and 7 relative inverse 25
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:855
    • 提供者:汪涵
  1. 1008

    0下载:
  2. Julius Caesar曾经使用过一种很简单的密码。对于明文中的每个字符,将它用它字母表中后5位对应的字符来代替,这样就得到了密文。比如字符A用F来代替。如下是密文和明文中字符的对应关系。 密文 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 明文 V W X Y Z A B C D E F G H I J K L M N O P Q R S T U 你的任务是对给定的密文进行解密得到明文。 你需要注意
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-25
    • 文件大小:1276
    • 提供者:dvd
  1. RSA

    0下载:
  2. RSA數位簽章加解密程式, 可自行更改訊息M用以產生簽章S-RSA digital signature encryption and decryption program can make changes to the message M to generate the signature S
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-10
    • 文件大小:559
    • 提供者:ASO
  1. AES-Rijndael

    0下载:
  2. Rijndael (pronounced Reindaal) AES算法,由Joan Daemen and Vincent Rijmen设计。-//Rijndael (pronounced Reindaal) is a block cipher, designed by Joan Daemen and Vincent Rijmen as a candidate algorithm for the AES. //The cipher has a variable block length an
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:23042
    • 提供者:doofu
  1. New-folder-(4)

    0下载:
  2. We begin with choosing two random large distinct primes p and q. We also pick e, a random integer that is relatively prime to (p-1)*(q-1). The random integer e is the encryption exponent. Let n = p*q. Using Euclid s greatest common divisor a
  3. 所属分类:Crypt_Decrypt algrithms

  1. square

    0下载:
  2. 由WeiDai编写并放置在公共主机上 基于Paulo S.L.M. Barreto s开源实施-square.cpp- written and placed in the public domain by Wei Dai Based on Paulo S.L.M. Barreto s public domain implementation
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-13
    • 文件大小:2196
    • 提供者:ShichaoLiang
  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. Kruskal.m

    0下载:
  2. This code consists of the example of Kruskal s algorithm to find the minimum-spanning-tree which connects all the nodes through the edge with the least minimum edge values without creating the cycle.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-12
    • 文件大小:872
    • 提供者:Peter
搜珍网 www.dssz.com