搜索资源列表

  1. kenel_crypto

    0下载:
  2. 内核加解密算法 加解密函数库及其使用说明,详见附件。 find_cipher_by_name中参数ciphername可取的值为下面的组合,对应不同的模式: (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,twofish)-ecb (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,tw
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:139861
    • 提供者:xf
  1. 1. A block cipher cryptosystem using wavelet tran

    0下载:
  2. 在现在信息的安全性得到了重视,水印技术在信息隐藏中是一种新的方法。这篇文章能够帮助我们理解水印技术。-now information security has been the focus of attention, watermark technology in the Information Hiding is a new approach. This article can help us to understand waterm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:535329
    • 提供者:王清华
  1. 线性移位寄存器的C语言实现

    1下载:
  2. 线性移位寄存器是流密码的重要组成部分,该程序就是实现该方法。- The linearity shift register is the stream cipher important constituent, this procedure realizes this method.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:11131
    • 提供者:王清华
  1. gsodbc_demo

    0下载:
  2. 一个可以测试mssql,oracle以及vfp数据库的小程序-a test mssql, oracle database and Cipher small programs
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:1621555
    • 提供者:孙轩
  1. Shift Cipher

    0下载:
  2. 一个移位加密算法的源代码,跟大家交流一下。-a shift encryption algorithm source code sharing with you what.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:35200
    • 提供者:叶海鹏
  1. Sequence-Cipher-Algorithm

    0下载:
  2. 序列加密算法,用于文件的加密。基于硬件,速度快,还算好用-sequence encryption algorithm for file encryption. Hardware-based, fast and rather user-friendly
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:52354
    • 提供者:云容
  1. 密码算法库libtomcrypt-0.96

    0下载:
  2. 这是信息安全方面的,密码算法的列程,通过它可以了解一些密码算法的知识!-This is the information security, password algorithm out way through it can understand the cipher knowledge!
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:984568
    • 提供者:李树前
  1. vfp进度条演示

    0下载:
  2. 基于vfp的多种进度条及可视化控件的演示。-based Cipher progress of a variety of visualization and control of the demonstration.
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:6825
    • 提供者:蒋志斌
  1. openssl-0.9.6h.tar

    0下载:
  2. OpenSSL-0.9.6h完整安装包,里面有很多密码算法的源代码,RSA,DSA,MD4,MD5,应有尽有-OpenSSL - 0.9.6h complete installation package, there are many cipher algorithm source code RSA, DSA, MD4 and MD5, everything
  3. 所属分类:开发工具

    • 发布日期:2008-10-13
    • 文件大小:2178314
    • 提供者:赖晖
  1. DES_java1234

    0下载:
  2. des算法简单实现。它以64位的明文和56位的密钥作为输入,通过DES加密运算产生64位密文输出。其解密过程利用同以密钥和算法将密文还原成明文。因为java语言的安全性&网络处理能力强,所以就利用了java语言编写-des simple algorithm to achieve. It's expressly 64 and 56 as the key input, through DES encryption algorithm
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:6964
    • 提供者:leae
  1. ArcFour

    0下载:
  2. RC4 is a secure and very fast 8-bit stream cipher/psuedo-random number generator, with a 2^1700 interval -RC4 is a secure and very fast 8-bit stream cipher/psuedo-random number generator, with a 2^1700 interval
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1426
    • 提供者:驱逐倭寇
  1. IDEA_C.ZIP

    0下载:
  2. IDEA是一个分组长度为64位的分组密码算法,密钥长度为128位(抗强力攻击能力比DES强),同一算法既可加密也可解密。 IDEA的“混淆”和“扩散”设计原则来自三种运算,它们易于软、硬件实现(加密速度快): -IDEA is a packet length of the 64 block cipher algorithms, key length of 128 (anti strong offensive capability
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:8375
    • 提供者:HCJ
  1. boucher-big-block-cipher.tar

    0下载:
  2. 一个应用密码学的源代码,主要完成应用密码方面的功能。-a Cryptographic Application source code, application code to complete the function.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4088
    • 提供者:成名
  1. VC_RSA

    0下载:
  2. 一、RSA基本原理 对明文分组M和密文分组C,加密与解密过程如下: C = POW (M , e) mod n M = POW(C , d) mod n = POW(POW( M ,e), d) mod n=POW( M,e*d) 其中POW是指数函数,mod是求余数函数。 其中收发双方均已知n,发送放已知e,只有接受方已知d,因此公钥加密算法的公钥为 KU={ e , n},私钥为KR={d , n}。该算法要
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:5523
    • 提供者:烟翔
  1. salsa20source

    0下载:
  2. 这是欧洲流密码计划中的一个密码的源代码,叫salsa20,-This is the European Stream Cipher plans of a secret source code, called salsa20.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:7945
    • 提供者:chensong
  1. Electronic cipher lock

    0下载:
  2. 设计八位密码锁 提示输入密码是否正确并予以直观显示 可以修改密码 可以重置密码 输入密码错误三次锁定屏幕并报警(Design eight bit cipher lock Indicate whether the input password is correct and to be displayed intuitively You can modify the password You can reset the pas
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-06
    • 文件大小:23552
    • 提供者:timmer
  1. 9781785286582_Code

    0下载:
  2. ceaser cipher to det
  3. 所属分类:其他小程序

    • 发布日期:2024-05-06
    • 文件大小:242688
    • 提供者:Nahor
  1. matlab programs

    0下载:
  2. Hill cipher Encrypt by using Hill cipher matlab code
  3. 所属分类:加密解密

    • 发布日期:2024-05-06
    • 文件大小:15360
    • 提供者:mohammed
  1. work2 Vigenere cipher

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

    • 发布日期:2024-05-06
    • 文件大小:29696
    • 提供者:judian
  1. RC4 Symmetric Cipher

    0下载:
  2. C# implementation of the RC4 stream cipher
  3. 所属分类:.net编程

    • 发布日期:2022-02-15
    • 文件大小:1491
    • 提供者:LongLongMan
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »

源码中国 www.ymcn.org