搜索资源列表

  1. 凯撒密码算法实验

    0下载:
  2. 我自己做的小程序。多多支持啊啊
  3. 所属分类:密码/编码算法

  1. kaiser/凯撒窗函数的源代码

    0下载:
  2. 凯撒窗函数的源代码/MATLAB
  3. 所属分类:其它程序

    • 发布日期:2011-12-22
    • 文件大小:2626
    • 提供者:aizhouliguo
  1. 概率破译

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

    • 发布日期:2024-05-18
    • 文件大小:241664
    • 提供者:师磊
  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-05-18
    • 文件大小:172032
    • 提供者:刘娟
  1. Caesar--java

    0下载:
  2. 凯撒密码扩展算法,输入加密参数k1,k2, c =(k1*m+k2) mod 26-Caesar expansion password algorithm, the import of encryption parameters k1, k2, c = (k1* m k2) mod 26
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:Eyre
  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-05-18
    • 文件大小:704512
    • 提供者:李杰
  1. encipher_decipher

    0下载:
  2. 包括了多种加解密算法(凯撒,playfair,rc4,idea,lfsf)-include a variety of encryption and decryption algorithms (Julius Caesar, PLAYFAIR, RC4, the idea, lfsf)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:80896
    • 提供者:洪逸轩
  1. caser

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:conner
  1. AIcodesystem

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

    • 发布日期:2024-05-18
    • 文件大小:10400768
    • 提供者:陈守勇
  1. CipherVC++

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

    • 发布日期:2024-05-18
    • 文件大小:29696
    • 提供者: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 fu
  3. 所属分类:加密解密

    • 发布日期:2024-05-18
    • 文件大小:1889280
    • 提供者:金晓爽
  1. Caeser.java

    0下载:
  2. 1.凯撒密码的盲目搜索 2.凯撒密码的启发示搜索1 3.凯撒密码的启发示搜索2 -1. Caesar password blindly Search 2. Caesar said password inspired Search 1 3. Caesar said password inspired Search 2
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:rtshen
  1. kaisamima

    0下载:
  2. 可在同一文档里读写凯撒密码,可直观地看到加密前后对比-Can read and write in the same document in Caesar passwords, encryption can be intuitive to see before and after contrast
  3. 所属分类:加密解密

    • 发布日期:2024-05-18
    • 文件大小:13312
    • 提供者:吴丹
  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-05-18
    • 文件大小:4096
    • 提供者:徐凯波
  1. Caesar

    0下载:
  2. 凯撒密码 Java版的 好像有些小毛病 帮我看看啊-Java version of Caesar password like some small problems to help me take a look at ah
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:安童
  1. caser

    0下载:
  2. 凯撒密码,请提出建议和意见 谢谢啦。欢迎下载-Caesar password, please make recommendations and suggestions I would like to thank you. Welcome to download
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:1869824
    • 提供者:jepring
  1. CASER_young

    0下载:
  2. 凯撒密码的编程实现,仅提供学习交流,帮助大家理解凯撒加密的原理-Caesar programming password, only to learn communication and help us to understand the principles of encryption Caesar
  3. 所属分类:加密解密

    • 发布日期:2024-05-18
    • 文件大小:24576
    • 提供者:郑杨
  1. 凯撒密码

    0下载:
  2. 凯撒密码(caeser)是用于加密通过信使传递的作战命令。置换加密的优点就在于它易于实施却难于破解。发送方和接收方很容易事先商量好一个密钥,然后通过密钥从明文中生成密文,即使敌人获取密文,通过密文直接猜测其代表的意义,在实践中是不可能的。 在密码学中存在着各种各样的置换方式,但所有不同的置换方式都包含2个相同的元素:密钥和协议(算法)。凯撒密码的密钥是x,算法是将普通字母表中的字母用密钥对应的字母替换。(The Kaiser code
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:799744
    • 提供者:寒修末
  1. 凯撒密码

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

    • 发布日期:2024-05-18
    • 文件大小:65536
    • 提供者:我是瘦子
  1. 凯撒密码

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:secyanzi
« 12 3 4 5 6 7 8 9 10 ... 14 »

源码中国 www.ymcn.org