Location:
Search - HMAC
Search list
Description: HMAC即带密钥的HASH函数,用它产生的报文鉴别码(MAC)可以实现报文鉴别。这里我将其做成一个软件,用于对文件的合法性进行校验。以下我先简单介绍软件相关背景知识再介绍其代码实现。
-HMAC key is to bring the hash function, used the text of the report identifying code (MAC) can realize the text identification. I am here to create a software for the document verifying the legitimacy. I briefly introduce software-related background knowledge will introduce its implementation of the code.
Platform: |
Size: 50008 |
Author: 杨飞 |
Hits:
Description: hmac的verilog代码, 通过控制字选择进行sha1运算或hmac运算-hmac the verilog code word through the control options or hmac sha1 Operational Operational
Platform: |
Size: 559558 |
Author: lijialu |
Hits:
Description: hmac是一种消息验证码,我开发的这个程序可以进行任意长度的消息验证。该程序代码可以用来防止文件篡改,可以适当修改输入密码。
Platform: |
Size: 3604 |
Author: wangweiyang |
Hits:
Description: 软件实现SHA1的HMAC算法,因为MD5已经被破解,所以就直接不上传了-software SHA1 the HMAC algorithms, as MD5 has been solved, so they do not directly uploaded
Platform: |
Size: 3072 |
Author: 高志权 |
Hits:
Description: 内核加解密算法 加解密函数库及其使用说明,详见附件。 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,twofish)-cbc (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc6,serpent,twofish)-cfb struct cipher_implementation* ci中对应的可调用的method:encrypt_iv decrypt_iv encrypt decrypt 比如以des-cbc为find_cipher_by_name的参数得到的ci调用encrypt_iv,decrypt_iv. find_digest_by_name中参数digestname可取的值: sha1 md5 struct digest_implementation* di中对应的可调用的method:open update digest close hmac 计算digest时调用di->digest,计算hmac时调用di->hmac. 注意:加载我们需要的cipher-*.o和digest-*.o之前需先加载cryptoapi.o。 -core encryption and decryption algorithm encryption and decryption functions and their use, as detailed in the annex. Find_cipher_by_name cipher desirable parameter values to the following portfolio, dealing with different modes : (des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, RC5, production, serpent, twofish)- ecb ( des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, RC5, production, serpent, twofish)- cbc (des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, production, the serpent , twofish)- Sample struct cipher_implementation ci* corresponding the available method : encrypt_iv decrypt_iv encrypt decrypt such as a des-cbc find_cipher_by_name parameters for the ci call encrypt_iv, decrypt_iv. find_digest_by_name digestname desirable parameter values : sha1 md
Platform: |
Size: 139264 |
Author: xf |
Hits:
Description: HMAC即带密钥的HASH函数,用它产生的报文鉴别码(MAC)可以实现报文鉴别。这里我将其做成一个软件,用于对文件的合法性进行校验。以下我先简单介绍软件相关背景知识再介绍其代码实现。
-HMAC key is to bring the hash function, used the text of the report identifying code (MAC) can realize the text identification. I am here to create a software for the document verifying the legitimacy. I briefly introduce software-related background knowledge will introduce its implementation of the code.
Platform: |
Size: 50176 |
Author: 杨飞 |
Hits:
Description: Linux下的voip通信終端軟件,common目綠為多媒體開發包,主要提供內存mbus,md5,hmac,網絡接口方面的函數.rat為主要的函數集.-under Linux software voip communication terminals, common green head for multimedia development kits, main memory to provide legal, md5, hmac, network interface functions. rat of the major sets of functions.
Platform: |
Size: 726016 |
Author: 張智 |
Hits:
Description: a C++ Class Library of Cryptographic Primitives
This library includes:
MD2, MD5, SHA-1, HAVAL, Tiger, RIPE-MD160, MD5-MAC, HMAC, XOR-MAC, DES,
IDEA, WAKE, 3-WAY, TEA, SAFER, Blowfish, SHARK, GOST, CAST-128, Square,Diamond2, Sapphire, RC2, RC5, RC6, MARS, SEAL, Luby-Rackoff, MDC,
various encryption modes (CFB, CBC, OFB, counter), DH, DH2, MQV, DSA,
NR, ElGamal, LUC, LUCDIF, LUCELG, Rabin, RW, RSA, BlumGoldwasser,
elliptic curve cryptosystems, BBS, DEFLATE compression,Shamir s secret sharing scheme, Rabin s information dispersal scheme.-a C++ Class Library of Cryptographic Primitives This library includes: MD2, MD5, SHA-1, HAVAL, Tiger, RIPE-MD160, MD5-MAC, HMAC, XOR-MAC, DES, IDEA, WAKE, 3-WAY, TEA, SAFER, Blowfish, SHARK, GOST, CAST-128, Square,Diamond2, Sapphire, RC2, RC5, RC6, MARS, SEAL, Luby-Rackoff, MDC, various encryption modes (CFB, CBC, OFB, counter), DH, DH2, MQV, DSA, NR, ElGamal, LUC, LUCDIF, LUCELG, Rabin, RW, RSA, BlumGoldwasser, elliptic curve cryptosystems, BBS, DEFLATE compression,Shamir s secret sharing scheme, Rabin s information dispersal scheme.
Platform: |
Size: 388096 |
Author: 刘永 |
Hits:
Description: hmac的verilog代码, 通过控制字选择进行sha1运算或hmac运算-hmac the verilog code word through the control options or hmac sha1 Operational Operational
Platform: |
Size: 559104 |
Author: lijialu |
Hits:
Description: This standard describes a keyed-hash message authentication code (HMAC), a
mechanism for message authentication using cryptographic hash functions. HMAC can
be used with any iterative Approved cryptographic hash function, in combination with a
shared secret key. The cryptographic strength of HMAC depends on the properties of the
underlying hash function. The HMAC specification in this standard is a generalization of
Internet RFC 2104, HMAC, Keyed-Hashing for Message Authentication, and ANSI
X9.71, Keyed Hash Message Authentication Code.-err
Platform: |
Size: 121856 |
Author: leiuchan |
Hits:
Description: hmac是一种消息验证码,我开发的这个程序可以进行任意长度的消息验证。该程序代码可以用来防止文件篡改,可以适当修改输入密码。-HMAC is a message authentication code, I developed this procedure can be of arbitrary length message authentication. The program code can be used to prevent document tampering, with appropriate modifications can enter a password.
Platform: |
Size: 3072 |
Author: wangweiyang |
Hits:
Description: 比较好的代码,可以进行HMAC运算,大家看看啊-Relatively good code, can be HMAC computation, let us look at ah
Platform: |
Size: 16384 |
Author: Tracy |
Hits:
Description: 精简后的md5,hmac—md5 算法,方面程序调用
Platform: |
Size: 2109440 |
Author: char |
Hits:
Description: 使用Openssl的HMAC运算样例, 支持X86和X64平台。-The use of the HMAC computation Openssl example, to support the X86 and X64 platforms.
Platform: |
Size: 5490688 |
Author: chen |
Hits:
Description: this an open source HMAC message authentication implementation in C language with secure hash algorithm SHA -this is an open source HMAC message authentication implementation in C language with secure hash algorithm SHA
Platform: |
Size: 13312 |
Author: enropin |
Hits:
Description: hmac using SHA algorithm source code-hmac using SHA algorithm source code...
Platform: |
Size: 96256 |
Author: anshul khandelwal |
Hits:
Description: HMAC — MD 5算法的硬件实现,可以对初学者有一定得帮助。-HMAC- MD 5 algorithm for hardware implementation
Platform: |
Size: 179200 |
Author: zhangchaoqi |
Hits:
Description: HMAC-SHA256 implementation
Platform: |
Size: 5120 |
Author: fredyu |
Hits:
Description: 利用HMAC-SHA-1算法生成加密消息摘要,长度可控制,语言C/C++ -The use of HMAC-SHA-1 algorithm to generate encrypted message digest, the length can be controlled, the language C/C++
Platform: |
Size: 21504 |
Author: Zn |
Hits:
Description: 包含HMAC,SHA1,SHA256,SHA384,SHA512的加密写法-Contains HMAC, SHA1 SHA256, SHA384, SHA512 encryption capitalization
Platform: |
Size: 1549312 |
Author: 彭川 |
Hits: