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

搜索资源列表

  1. caser

    0下载:
  2. 凯撒密码-扩展的凯撒密码,C语言版本。密码技术试验一-Caesar PIN-code expansion Caesar, C language version. Cryptography a test
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:789
    • 提供者:conner
  1. CipherVC++

    1下载:
  2. 本实例利用VisualC++6.0来实现了一个古典密码加密程序,包括凯撒密码,维吉尼亚密码和列换位法三种-example of the use of VisualC 6.0 to achieve a classical password encryption procedures, Caesar including passwords, and passwords out of Virginia law three transpositions
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:29557
    • 提供者:oliver
  1. 0303kais

    0下载:
  2. 本程序是凯撒密码仿真程序。可根据输入的密钥 生成字母替换表。有加密和解密功能。可载入文件进行加密或解密。功能还可扩展。-this procedure is Caesar password simulation program. Can be imported under the Key Generation alphabetical replacement table. Have encryption and decryption functions. Documents can be prin
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:28710
    • 提供者:金晓爽
  1. kaisamima

    0下载:
  2. 可在同一文档里读写凯撒密码,可直观地看到加密前后对比
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:13226
    • 提供者:吴丹
  1. EncodeDecode

    0下载:
  2. 编写//凯撒密码的模拟程序 //1:用于凯撒密码的加密 //2:用于已知密钥的解密 //3:用于未知密钥的解密 //0:表示退出该程序
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:2037
    • 提供者:心得
  1. gudianmima

    0下载:
  2. 古典密码中,主要的思想为移位算法及置换算法。 1.移位密码 密钥K为整数,且取值空间为0到25;加密函数:x = x + k (mod 26);解密函数:x = x - k (mod 26)。当K=3时,为凯撒密码。 2.仿射密码 密钥对由a、b组成,整数a满足 gcd(a, 26) = 1,整数b的取值空间为0到25;加密函数:x = ax + b(mod 26);解密函数:x = a*y - a*b (mod 26)。当a=1,b=3时,为凯撒密码。 3.维吉
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:3852
    • 提供者:徐凯波
  1. abc

    0下载:
  2. 凯撒密码 c++版的 好像有些小毛病 帮我看看啊
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1664
    • 提供者:安童
  1. OfficePasswordRemover

    0下载:
  2. 凯撒密码 好像有些小毛病 帮我看看啊 凯撒密码 帮我看看啊
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1359768
    • 提供者:安童
  1. CASER_young

    0下载:
  2. 凯撒密码的编程实现,仅提供学习交流,帮助大家理解凯撒加密的原理
  3. 所属分类:加密解密

    • 发布日期:2014-01-17
    • 文件大小:25052
    • 提供者:郑杨
  1. 概率破译

    0下载:
  2. 用c++实现的对凯撒密码的解密程序-achieve with the right Caesar password decryption process
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:7211
    • 提供者:师磊
  1. caesar

    0下载:
  2. 凯撒密码 古典密码学中的凯撒密码....VC++版
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:7363
    • 提供者:skittles
  1. 13004707253

    0下载:
  2. 凯撒密码是一种非常古老的加密方法,相传当年凯撒大地行军打仗时为了保证自己的命令不被敌军知道,就使用这种特殊的方法进行通信,以确保信息传递的安全。他的原理很简单,说到底就是字母于字母之间的替换。基于java
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:919
    • 提供者:紫木
  1. aa

    0下载:
  2. 凯撒密码的过程,再用配对字母取代讯息里的原始字母位移加密法(shift cipher):模数计算。Ek(x)=(x+k)mod 26,Dk(y)=(y –k)mod 26 如:k=5 “hello world”加密为:mjqqt….
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:5678
    • 提供者:李艳
  1. 111111

    0下载:
  2. 凯撒密码算法源程序...... 凯撒密码算法源程序
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1525
    • 提供者:edison
  1. 凯撒密码算法的实现

    0下载:
  2. 凯撒密码算法的实现 加密:c=k1*m+k2 mod 26 解密:m=k1-1(c-k2) mod 26 ,Caesar password encryption algorithm: c = k1* m+ K2 mod 26 Decryption: m = k1-1 (c-k2) mod 26
  3. 所属分类:加密解密

    • 发布日期:2017-03-21
    • 文件大小:989
    • 提供者:archy
  1. Caesar_encode

    0下载:
  2. 实现移位密码(扩展凯撒密码),用键盘接收明文和密钥,屏幕打印密文。-Achieve translocation password (Extension Caesar password), use the keyboard to receive explicit and key, screen printing ciphertext.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-26
    • 文件大小:1034
    • 提供者:蔡吉欣
  1. 123

    0下载:
  2. 一个凯撒密码的源程序,实现文件的加密和解密过程,适用于学生参考。-A Caesar cipher source code to achieve the file encryption and decryption process is suitable for students.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-07
    • 文件大小:782
    • 提供者:钟华
  1. caeser

    1下载:
  2. 一个简单的关于凯撒密码的加密和解密的小程序。包含源文件、可执行文件以及报告。-A simple on the Caesar cipher encryption and decryption of the applets. Contains the source files, executable files and reports.
  3. 所属分类:加密解密

    • 发布日期:2017-04-21
    • 文件大小:79837
    • 提供者:Lee
  1. 中英文加密解密

    0下载:
  2. 利用凯撒密码对中文文档及英文文档进行加密和解密,同时英文文档加密区分大小写。(The Kaiser password is used to encrypt and decrypt Chinese documents and English documents, and the encryption of English documents is very small and case sensitive.)
  3. 所属分类:加密解密

    • 发布日期:2018-01-08
    • 文件大小:1249280
    • 提供者:lala_
  1. 凯撒解密

    0下载:
  2. java开发的凯撒解密系统,该系统能破解简单的凯撒加密的密码(this is a software which can unfold the password)
  3. 所属分类:加密解密

    • 发布日期:2018-01-09
    • 文件大小:7168
    • 提供者:thesky
« 12 3 4 »
搜珍网 www.dssz.com