Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ES_CW2_Starter_JIN EMBEDDED_CW2 EMBEDDED_CW2_Final Spinnybois ... more
Fork of Crypto by
hash/HMAC.h
- Committer:
- feb11
- Date:
- 2013-09-24
- Revision:
- 10:bc9c23aa3870
File content as of revision 10:bc9c23aa3870:
#ifndef HMAC_H
#define HMAC_H
#include "HashAlgorithm.h"
class HMAC
{
public :
HMAC(HashAlgorithm *hashAlgo, uint8_t *k, uint32_t kl);
virtual ~HMAC();
void update(uint8_t *data, uint32_t length);
void finalize(uint8_t *hash);
private :
HashAlgorithm *algo;
uint8_t key[64];
uint32_t keyLength;
};
#endif
