搜索资源列表

  1. 凯撒加密

    0下载:
  2. 实现恺撒密码加密、解密以及破译,(破译若编码有困难,可以用文字描述算法) 【要求】:可允许用户输入密钥-achieve Caesar encryption, decryption and deciphered, (if deciphering coded difficulties can be written descr iption algorithm) -- request : allow users to input k
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:172336
    • 提供者:刘娟
  1. kasajiami

    0下载:
  2. 凯撒加密解密算法,可以对输入的字符加以加密解密
  3. 所属分类:CA认证

    • 发布日期:2008-10-13
    • 文件大小:8780
    • 提供者:li zheng
  1. 凯撒加密

    0下载:
  2. 实现恺撒密码加密、解密以及破译,(破译若编码有困难,可以用文字描述算法) 【要求】:可允许用户输入密钥-achieve Caesar encryption, decryption and deciphered, (if deciphering coded difficulties can be written descr iption algorithm)-- request : allow users to input ke
  3. 所属分类:其他小程序

    • 发布日期:2024-06-27
    • 文件大小:172032
    • 提供者:刘娟
  1. kaisajiami

    0下载:
  2. 上网络安全的项目设计,是凯撒密码的加密与解密程序,不知道可以么?联系: lijie451789@163.com-network security on the project design, Caesar is password encryption and decryption procedures, I do not know it? Contact : lijie451789@163.com
  3. 所属分类:界面编程

    • 发布日期:2024-06-27
    • 文件大小:704512
    • 提供者:李杰
  1. EncodeCaser

    0下载:
  2. 1、采用(1)盲目搜索(2)启发式搜索对凯撒密文进行自动解密。 2、对替代法加密的程序进行解密(未完成,请多多指教) 3、词库使用到30万。 4、福州大学人工智能课程设计-1, using (a) blindly search (2) heuristic search for Caesar ciphertext automatically declassified. Two of the alternative method
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-06-27
    • 文件大小:1868800
    • 提供者:
  1. AIcodesystem

    0下载:
  2. 1、对于凯撒密文,实现了:1种盲目式搜索,4种启发式搜索,以及利用密钥实现的凯撒加密系统。 2、对于代入法密文,实现了:2种启发式搜索,1种利用密钥的代入法加密系统以及随机生成密钥的代入法加密系统。 3、字典工具,实现了对词库的增加,删除,检查等一系列的操作。 4、7种其他较为经典的加密方法的加密解密工具。包括:DES、Vigenere、IDEA、Keyword、LFSR、Playfair以及RC4等。 -1, Caes
  3. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:10400768
    • 提供者:陈守勇
  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 fu
  3. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:1889280
    • 提供者:金晓爽
  1. gudianmima

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

    • 发布日期:2024-06-27
    • 文件大小:4096
    • 提供者:徐凯波
  1. kaisa

    0下载:
  2. 原创的visual basic凯撒加密、解密算法。是我在读研究生时候网络安全课程的一次作业。-Original visual basic Caesar encryption, decryption algorithm. Is when I
  3. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:6144
    • 提供者:sxd
  1. kasajiami

    0下载:
  2. 凯撒加密解密算法,可以对输入的字符加以加密解密 -Caesar encryption and decryption algorithm, the input characters can be encryption and decryption
  3. 所属分类:CA认证

    • 发布日期:2024-06-27
    • 文件大小:368640
    • 提供者:li zheng
  1. kaiser1

    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. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:1024
    • 提供者:archy
  1. caser

    0下载:
  2. 这是一个通用的凯撒加密,进入界面可以选择,1.加密2.解密-This is a common Caesar encryption, enter the interface to choose, 1. Encryption 2. Decrypt
  3. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:24576
    • 提供者:吕婉琪
  1. Kaisa_VB

    0下载:
  2. 用VB实现凯撒加密解密算法。适合初学者学习研究,欢迎下载!-Julius Caesar used encryption and decryption algorithms to achieve VB. Study and research for beginners are welcome to download!
  3. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:6144
    • 提供者:wangc
  1. 123

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

    • 发布日期:2024-06-27
    • 文件大小:1024
    • 提供者:钟华
  1. KSjm

    0下载:
  2. 最近密码学的一个小作业,简单的大小写英文字母凯撒加密解密。-Recent cryptography, a small operation, a simple case letters Caesar encryption and decryption.
  3. 所属分类:压缩解压

    • 发布日期:2024-06-27
    • 文件大小:27648
    • 提供者:Fifty5th
  1. caeser

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

    • 发布日期:2024-06-27
    • 文件大小:79872
    • 提供者:Lee
  1. 凯撒密码

    0下载:
  2. 进行简单的凯撒密码加密解密工作,可导入导出文件(Simple encryption and decryption of Kaiser cipher)
  3. 所属分类:Windows编程

    • 发布日期:2024-06-27
    • 文件大小:65536
    • 提供者:我是瘦子
  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. 所属分类:加密解密

    • 发布日期:2024-06-27
    • 文件大小:1249280
    • 提供者:lala_
  1. 凯撒解密

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

    • 发布日期:2024-06-27
    • 文件大小:7168
    • 提供者:thesky
  1. 凯撒密码

    0下载:
  2. 凯撒密码简单的加密和解密程序 python实现代码(Caesar's decode python language)
  3. 所属分类:信息检索与抽取

    • 发布日期:2024-06-27
    • 文件大小:1024
    • 提供者:secyanzi
« 12 3 4 5 »

源码中国 www.ymcn.org