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: AES_example shaun_larada Smartage
Fork of Crypto by
HMAC.h
00001 #ifndef HMAC_H 00002 #define HMAC_H 00003 00004 #include "HashAlgorithm.h" 00005 00006 class HMAC 00007 { 00008 public : 00009 00010 HMAC(HashAlgorithm *hashAlgo, uint8_t *k, uint32_t kl); 00011 virtual ~HMAC(); 00012 00013 void update(uint8_t *data, uint32_t length); 00014 void finalize(uint8_t *hash); 00015 00016 private : 00017 00018 HashAlgorithm *algo; 00019 uint8_t key[64]; 00020 uint32_t keyLength; 00021 }; 00022 00023 #endif
Generated on Mon Jul 18 2022 02:59:39 by
 1.7.2
 1.7.2 
    