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

搜索资源列表

  1. base64decode

    0下载:
  2. base64的解码C语言实现-base64 decoding C Language
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1002
    • 提供者:微分方程
  1. 基于JAVA的IDEA实现

    0下载:
  2. 本文介绍了在JAVA环境下如何实现IDEA对称加密算法。由于电子商务和电子政务的普及,安全加密技术在其中应用非常广泛,对安全加密技术的要求也很高。目前在JAVA环境下实现IDEA加密具有很多的优势,因为JAVA是基于面向对象的编程语言,并且由于它的平台无关性能被大量应用于Internet的开发。-This paper presents the Java environment IDEA how to achieve symmetric encryption algorithm. As e-com
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:3212
    • 提供者:王广驰
  1. dll_test_MD5

    0下载:
  2. MD5 加密算法 Delphi 源码。 编译为dll文件,方便其他语言的系统调用-MD5 encryption algorithm Delphi source. Dll file to compile and facilitate language system calls
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:269420
    • 提供者:周锋华
  1. DESDemo1

    0下载:
  2. 利用des算法加密文件的源代码,支持加密文档,用vc语言编写。-use encryption algorithm des documents the source code, supports encrypted files, using vc language.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:40476
    • 提供者:焦伟伟
  1. CryptoAPI_Cuickdemo

    0下载:
  2. 加密算法的小程序,支持加密多种文件,用vc语言编写。-encryption algorithm for small procedures, encryption support multiple files, vc language.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:12072
    • 提供者:焦伟伟
  1. d3des.tar

    0下载:
  2. DES( Data Encryption Standard)算法,于1977年得到美国政府的正式许可,是一种用56位密钥来加密64位数据的方法。DES算法以被应用于许多需要安全加密的场合。(如:UNIX的密码算法就是以DES算法为基础的)。下面是关于如何实现DES算法的语言性描述,如果您要其源代码,可以到Http//Assassin.yeah.net下载,后者您有任何问题也可以写信给我(Assassin@ynmail.com)。 -DES (Data Encryption Standard) a
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:5803
    • 提供者:yue
  1. 用C语言写的100行DES加密算法

    0下载:
  2. 用C语言写的100行DES加密算法,学习C语言和密码算法的好例程。-C language written in 100 lines DES encryption algorithm, C language learning algorithm and password good routines.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:12050
    • 提供者:甘雷
  1. DES C language

    0下载:
  2. 本程序是DES 加密系统的 C 语言源代码,对于c/c++学习者,网络安全学习者有很大帮助。-DES Encryption System C language source code, c / c learners, Learners network security will be of great help.
  3. 所属分类:加密解密

    • 发布日期:2014-01-13
    • 文件大小:11582
    • 提供者:史志建
  1. sha1_c51

    1下载:
  2. SHA1算法的MCS-51平台实现,原创代码,专门为8位机优化,C语言和汇编与语言混合编程。完整KeilC工程,有测试代码。 优化后速度:一次SHA1(64字节),66363个指令周期,对应16MHz DS80C320 16ms 代码空间:字节,C支持库148字节(可覆盖) 数据空间:xdata 320(0x140)字节(可覆盖),data 34字节(可覆盖) -SHA1 algorithm MCS-51 platform, original code, specificall
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-30
    • 文件大小:7717
    • 提供者:cinder
  1. AES

    0下载:
  2. C语言实现AES的两种方式,实现了128,192,256三种模式的加密解密-C language AES' s two ways to achieve the three modes of encryption and decryption 128,192,256
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-27
    • 文件大小:46646
    • 提供者:李健
  1. ECC

    1下载:
  2. C语言,大素数域上的椭圆曲线加密解密算法-C language, the domain of large prime numbers on the elliptic curve encryption and decryption algorithm
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2016-08-03
    • 文件大小:43309
    • 提供者:杨颖
  1. (Clanguage)

    0下载:
  2. CBC模式的DES加密解密程序源代码(C语言)-CBC mode DES encryption and decryption of the source code (C language)
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-05
    • 文件大小:4734
    • 提供者:1234
  1. CRC--C-language

    1下载:
  2. CRC校验C语言实现,CRC(Cyclic Redundancy Check)校验应用较为广泛,以前为了处理简单,在程序中大多数采用LRC(Longitudinal Redundancy Check)校验,LRC校验很好理解,编程实现简单。用了一天时间研究了CRC的C语言实现,理解和掌握了基本原理和C语言编程。结合自己的理解简单写下来。-CRC, C language, CRC (Cyclic Redundancy Check) verification is widely used, prev
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-24
    • 文件大小:3942
    • 提供者:xiangyunl
  1. des-algorithm-c-language

    0下载:
  2. c语言des算法,一种传统的加密算法,较为经典-des algorithm c language, a traditional encryption algorithms, the more classical
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:2736
    • 提供者:Jason
  1. C-language-board-password-algorithm

    0下载:
  2. 基于C语言棋盘密码小算法,加密算法基础编程。-C language board password algorithm
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:636
    • 提供者:张新
  1. RSA-encryption-4-E(easy-language)

    0下载:
  2. 易语言RSA混合加密解密演示,做注册机的最佳选择,验证速度极快。-The RSA encryption demo of E(easy language) ,so ...to make a RI,it s the best choice and it is so fast.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2016-01-26
    • 文件大小:78848
    • 提供者:aopo
  1. compiler-language

    0下载:
  2. 汇编语言实现文件加解密功能,对字符或文本文件进行加密解密-Assembly language file encryption and decryption function, character or text file encryption and decryption
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-04
    • 文件大小:12757
    • 提供者:成瑶瑶
  1. DES_C-language

    0下载:
  2. C语言实现的DES代码,可以直接编译运行。加密10M文件时间大约16到20秒。注释详细。其中工程名AES是手误打错了,实际上是DES算法的实现代码。-C language implementation of the DES code can be directly compiled to run. 10M file encryption for about 16-20 seconds. Detailed notes. Which works were wrong hands AES is wro
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-30
    • 文件大小:12664109
    • 提供者:LXW
  1. Language-0572PRINTER4788618

    0下载:
  2. 与大家一起分享源码Language-0572PRINTER4788618的功能,源码还是不错的-To share with you the function of the source Language- 0572 printer4788618, source code is ok
  3. 所属分类:Crack_Hack

    • 发布日期:2017-04-13
    • 文件大小:1755
    • 提供者:qbut-305331
  1. change language in abaqus

    1下载:
  2. abaqus中英文语言互换插件,下载即用,exe格式。(ABAQUS Chinese and English language swap plug-ins.)
  3. 所属分类:破解

    • 发布日期:2019-10-15
    • 文件大小:3072
    • 提供者:VeFrank
« 12 3 4 5 6 7 8 9 10 ... 40 »
搜珍网 www.dssz.com