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
HashAlgorithm.h
00001 #ifndef HASH_ALGORITHM_H 00002 #define HASH_ALGORITHM_H 00003 00004 #include <stdint.h> 00005 00006 class HashAlgorithm 00007 { 00008 public : 00009 00010 virtual ~HashAlgorithm(); 00011 00012 virtual uint8_t outputSize() const = 0; 00013 virtual void update(uint8_t *data, uint32_t length) = 0; 00014 virtual void finalize(uint8_t *hash) = 0; 00015 }; 00016 00017 #endif
Generated on Mon Jul 18 2022 02:59:39 by
1.7.2
