搜索资源列表

  1. 维吉尼亚密码法

    0下载:
  2. 一个较为简单的维吉尼亚算法,供大家参考一下。-a relatively simple algorithm, Va., for your reference.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:21965
    • 提供者:叶海鹏
  1. 维吉尼亚密码的C语言源代码

    0下载:
  2. 自己编的一个维吉尼亚密码的C语言源代码,在密码分析中有一定参考价值,希望大家能够从中受益。-own series of the Virginia code in a C-language source code, the code analysis of a definite reference value, we hope to benefit from them.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1025
    • 提供者:刘春静
  1. 信息论实验

    0下载:
  2. 这是我做的信息论的3实验程序 (1、l-d编码 2、哈夫曼编码 3、维吉尼亚密码)-This my information, so the three experiments (1, l-d code 2, 3 Huffman coding, Virginia password)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-03
    • 文件大小:2048
    • 提供者:来盛骞
  1. pcked

    0下载:
  2. 四种加密解密算法的源代码:移位密码、仿射密码、维吉尼亚密码以及置换密码。-four encryption and decryption algorithm source code : shift password, affine passwords, Virginia passwords and password replacement.
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:唐莹
  1. 四种加密解密算法的源代码

    0下载:
  2. 四种加密解密算法的源代码:移位密码、仿射密码、维吉尼亚密码以及置换密码。-four encryption and decryption algorithm source code : shift password, affine passwords, Virginia passwords and password replacement.
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:发就
  1. 算法

    0下载:
  2. 维吉尼亚(Vigenere)密码为了提高密码的破译的难度,人们有发明一种多表置换的密码,即一个明文字母可以表示为多个密文字母,多表密码加密算法结果将使得对单表置换用的简单频率分析方法失效,其中维吉尼亚密码就是一种典型的加密方法。维吉尼亚密码是使用一个词组(语句)作为密钥,词组中每一个字母都作为移位替换密码密钥确定一个替换表,维吉尼亚密码循环的使用每一个替换表完成明文字母到密文字母的变换,最后所得到的密文字母序列即为加密得到的密文,具体过
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:god
  1. 维吉尼亚密码法

    0下载:
  2. 一个较为简单的维吉尼亚算法,供大家参考一下。-a relatively simple algorithm, Va., for your reference.
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:21504
    • 提供者:叶海鹏
  1. 维吉尼亚密码的C语言源代码

    0下载:
  2. 自己编的一个维吉尼亚密码的C语言源代码,在密码分析中有一定参考价值,希望大家能够从中受益。-own series of the Virginia code in a C-language source code, the code analysis of a definite reference value, we hope to benefit from them.
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:刘春静
  1. Vignear

    0下载:
  2. 维吉尼亚密码的破译。用VC++作为工具,编程最终实现了维吉尼亚密码分析,即在输入界面中输入用维吉尼亚加密的密文,便可以得到相应的密钥长度,具体密钥,以及解密后的明文。-Virginia decipher passwords. VC++ as a tool to achieve the ultimate programming code of Virginia, that is the input interface with input
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1920000
    • 提供者:赖晖
  1. simpledes

    0下载:
  2. 压缩包中有古典密码学中放射密码和维吉尼亚密码以及 DES加密解密,并观察DES密码体制的性质。-compressed with classical cryptography radiotherapy passwords and Virginia passwords and DES encryption and decryption. DES and observation system in nature.
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1168384
    • 提供者:周崇青
  1. virgineacode

    0下载:
  2. 维吉尼亚密码的C语言源代码,比较费时间啊,多多指正-Virginia passwords C language source code, more time-ah, give more correction
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-03
    • 文件大小:3072
    • 提供者:qgfhit
  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-03
    • 文件大小:29696
    • 提供者:oliver
  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-03
    • 文件大小:4096
    • 提供者:徐凯波
  1. cipher

    0下载:
  2. 使用维吉尼亚密码进行控制台编程,实现对英文文本文件的加解密!-Virginia password using the console program, to achieve the English version of the document encryption and decryption!
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:蔡吉欣
  1. vigenere

    0下载:
  2. 用C++实现的维吉尼亚密码源程序,已经在DevC++上测试过,大家可以再进行功能完善-With C++ Achievable Virginia password source, has been DevC++ Tested, we can further improve the function
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:张谷
  1. aaa

    0下载:
  2. 用维吉尼亚算法加密 /** * 维吉尼亚密码算法(BigDecimal),加/解密处理后仍为BigDecimal类型,正负号和小数点不进行处理 * * @param str * 源BigDecimal * @param key * 密钥,应为数字字符组成的字符串 * @param mode * 模式(加密or解密) * @return 加/解密后的BigDecimal -V
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:1024
    • 提供者:耿颖颖
  1. Vigenere_cipher

    0下载:
  2. 该程序用C++语言编写,可以实现维吉尼亚密码的加解密功能-Achieve password encryption and decryption functionality Virginia
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:173056
    • 提供者:黄星
  1. 维吉尼亚

    0下载:
  2. 对维吉尼亚密码进行加密或解密的操作,输入密钥,进行加密或解密(The operation of encrypting or deciphering the Virginia code, entering the key, encrypting or deciphering)
  3. 所属分类:加密解密

    • 发布日期:2024-05-03
    • 文件大小:14336
    • 提供者:Choo
  1. Cipher_generator

    0下载:
  2. 本程序为一个维吉尼亚密码生成器,可以改变码本的输入文件生成相应的密码(This program is a Virginia password generator, which can change the input file of the codebook and generate the corresponding password.)
  3. 所属分类:Windows编程

    • 发布日期:2024-05-03
    • 文件大小:2361344
    • 提供者:huanggx7
  1. work2 Vigenere cipher

    0下载:
  2. 维吉尼亚密码算法加密解密用matlab实现,有注释版(Virginia cipher encryption and decryption)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-03
    • 文件大小:29696
    • 提供者:judian
« 12 3 4 5 6 »

源码中国 www.ymcn.org