forked from len0rd/rockbox
This is a new flash installer framework for the X1000 targets. A bunch of this code is *UNTESTED* but there is an external test harness which allows the library to be built and tested on a PC. Once tests are written and the bugs are ironed out this framework will replace the existing installer code. New features: - Update tarballs are MD5-checksummed to guarantee integrity. - The flash map is no longer fixed -- updates are self describing and carry a map file which specifies the areas to update. - Can take full or partial backups with checksums computed on the fly. - Supports an additional verification mode which reads back data after writing to ensure the flash contents were not silently corrupted. Change-Id: I29a89190c7ff566019f6a844ad0571f01fb7192f
18 lines
339 B
C
18 lines
339 B
C
#ifndef _MD5_H
|
|
#define _MD5_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t total[2];
|
|
uint32_t state[4];
|
|
uint8_t buffer[64];
|
|
}
|
|
md5_context;
|
|
|
|
void md5_starts( md5_context *ctx );
|
|
void md5_update( md5_context *ctx, uint8_t *input, uint32_t length );
|
|
void md5_finish( md5_context *ctx, uint8_t digest[16] );
|
|
|
|
#endif /* md5.h */
|