A simple CyaSSL-based HMAC-MD5 implementation. Licensed under GPL v2.

Dependents:   RFrec_full RFtrans_full

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers hmac_md5.h Source File

hmac_md5.h

00001 #ifndef HMAC_MD5_H
00002 #define HMAC_MD5_H
00003 // wrapper for HMAC-MD5 from CyaSSL library
00004 
00005 // szOutput must hold at least 26 bytes
00006 void HMAC_MD5(const char * szKey, const char * szText, char * szOutput);
00007 
00008 
00009 #endif//HMAC_MD5_H