CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - AES-128

搜索资源列表

  1. aes

    0下载:
  2. 用C语言实现AES加解密,分组长度和密钥长度均为128位。-Implemented in C AES encryption and decryption, packet length and are 128-bit key length.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-07
    • 文件大小:3967
    • 提供者:赵明敏
  1. AES

    0下载:
  2. Assuming that one could build a machine that could recover a DES key in a second (i.e., try 255 keys per second), then it would take that machine approximately 149 thousand-billion (149 trillion) years to crack a 128-bit AES key. To put that into per
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-30
    • 文件大小:110832
    • 提供者:vipi
  1. LPC_IAP_FlashLoader_145x

    0下载:
  2. LPC2368 IAP_Flashloader with AES-128
  3. 所属分类:SCM

    • 发布日期:2017-04-08
    • 文件大小:160338
    • 提供者:FaceJr
  1. aes_mini_project

    0下载:
  2. It is encryption and decryption algorithm. AES is a symmetric encryption algorithm processing data in block of 128 bits.Under the influence of a key, a 128-bit block is encrypted by transforming it in a unique way into a new block of the same s
  3. 所属分类:CA program

    • 发布日期:2017-04-09
    • 文件大小:1194861
    • 提供者:asha
  1. AES

    0下载:
  2. AES的基本要求是,采用对称分组密码体制。AES的加密数据块长度固定为128 比特,密钥长度则可以是128,192或256比特。AES加密有很多轮的重复和变换。大致步骤如下:1、密钥扩展(KeyExpansion)。2、初始轮(Initial Round)。3、重复轮(Rounds)。每一轮由四个不同的阶段组成,包括一个混淆和三个代换:字节代换(SubBytes)、行移位(ShiftRows)、列混淆(MixColumns)、轮密钥加(AddRoundKey)。4、最终轮(Final Round
  3. 所属分类:CA program

    • 发布日期:2017-04-06
    • 文件大小:4122
    • 提供者:yuelianglian
  1. AES-MATLAB

    0下载:
  2. AES MATLAB implementation, for 128,192 and 256 bytes
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:12417
    • 提供者:ikarigeorge
  1. CBC-AES

    0下载:
  2. CBC-AES MATLAB implementation for 128,192 and 256 bits
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:26731
    • 提供者:ikarigeorge
  1. Encrypted-PLCPSolution

    1下载:
  2. 在电力线通信上实现AES-128加密功能-Encrypted Data Communication Using Cypress PLC Solution
  3. 所属分类:加密解密

    • 发布日期:2013-10-11
    • 文件大小:2200955
    • 提供者:于涛
  1. FPGA--AES-algorithm

    0下载:
  2. 本文介绍了AES 数据加密结构, 以及相关的有限域的知识及简单运算, 提出了一种用FPGA 高速实现AES 算法的方案, 该方 案设计的加密模块支持AES 标准的三种密钥长度: 128,192,256, 支持ECB, CBC, CTR 三种工作模式, 即支持feedback 和non- feedback 两种模式, 最后给出了本设计的性能指标-This article describes the AES data encryption structure, as well as the
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-28
    • 文件大小:240731
    • 提供者:李仁杰
  1. AES-256bits

    0下载:
  2. AES加密解密算法,支持128,192,256变长密钥-AES encryption and decryption algorithms, support 128,192,256 variable-length keys
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-27
    • 文件大小:38294
    • 提供者:Wang Tong
  1. Decodificador

    0下载:
  2. Decodificador de codigos criptografacom em AES 128-bits
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-13
    • 文件大小:2409
    • 提供者:PC
  1. AES-Jeffrey-zhu

    0下载:
  2. Visual c++ 下使用C语言开发的AES分组加密算法,ECB模式,分组长度128bit,密钥长度可变,128或256bit。-Developed using C language Visual c++ AES block encryption algorithm, ECB mode, packet length 128bit key variable length, 128 or 256bit.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-11
    • 文件大小:149292
    • 提供者:yanan
  1. AES-OFB

    0下载:
  2. Visual c++ 下使用C语言开发的基于AES分组加密算法的流加密算法,OFB模式,分组长度128bit,密钥长度可变,128或256bit,可实现以字节为单位的流加密。-Using C language development in Visual c++ block encryption algorithm AES-based stream encryption algorithm, OFB mode, packet length 128bit key variable length, 1
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-02
    • 文件大小:3058938
    • 提供者:yanan
  1. Aes

    0下载:
  2. 128位AES加/解密函数Enciphering/Deciphering;CBC工作模式下的AES加/解密函数CBCEncrypt/CBCDecrypt。本密码算法的实现不仅是经典AES算法的实现,还采用动态S盒技术对其作出了改进,使其安全性更高,改进之处参考了《AES算法的S盒分析及改进探讨》一文。-128-bit AES encryption/decryption the function Enciphering/Deciphering the CBC operating mode AES
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-12
    • 文件大小:1172322
    • 提供者:fang
  1. AES

    0下载:
  2. 一个用JAVA实现的AES算法示例,采用ECB模式,128位密钥-AES algorithm is an example of a JAVA ECB mode, a 128-bit key
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-09
    • 文件大小:761
    • 提供者:ludygg
  1. aes

    0下载:
  2. AES算法的实现,C语言编程完成加密和解密的过程,明文与密钥长度均为128位。-Realization of the AES algorithm, C language programming to complete the encryption and decryption process, the plaintext and the key length is 128.
  3. 所属分类:CA program

    • 发布日期:2017-12-01
    • 文件大小:3822
    • 提供者:张培凤
  1. AES-Rijndael

    0下载:
  2. 实现了AES加解密算法的Rijndael算法。密钥长度支持128、192和256比特,明文分组支持128、192和256长度,密钥和明文长度可两两组合。-Realize the AES encrypting. The Key includes 128bit, 192bit and 256bit. And so is the message. They can be combined with each other.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-06
    • 文件大小:3304
    • 提供者:lipoon
  1. AES

    0下载:
  2. 经典的AES加密解密软件,用VS2010 C#开发的,功能简单,只能加密解密128位,即32个16进制的字符。有显示扩展密钥的功能。源码。-The classic AES encryption and decryption software using VS2010 C# development, function, and only 128-bit encryption and decryption, 32 hexadecimal characters. Extended key functi
  3. 所属分类:CSharp

    • 发布日期:2017-11-19
    • 文件大小:114477
    • 提供者:hcx
  1. AES

    1下载:
  2. AES加密算法,测试通过,128位秘钥,加密和解密都有-AES encryption algorithm, the test is passed, the 128-bit secret key encryption and decryption have
  3. 所属分类:Button control

    • 发布日期:2017-11-17
    • 文件大小:5288101
    • 提供者:dingpeng
  1. AES

    0下载:
  2. 通过测试,可以实现16,128,256三种方式的加密算法,来增加加密强度-Encryption algorithm, can be achieved by testing 16,128,256 three ways to increase the encryption strength
  3. 所属分类:ELanguage

    • 发布日期:2017-11-25
    • 文件大小:18551
    • 提供者:雨辰
« 1 2 3 4 5 67 8 9 10 11 12 »
搜珍网 www.dssz.com