2006-11-15 04:22:22 +00:00
|
|
|
#ifndef _GPXE_MD5_H
|
|
|
|
|
#define _GPXE_MD5_H
|
|
|
|
|
|
2007-01-30 14:55:17 +00:00
|
|
|
struct crypto_algorithm;
|
2006-11-15 04:22:22 +00:00
|
|
|
|
2007-02-01 05:48:56 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
#define MD5_DIGEST_SIZE 16
|
|
|
|
|
#define MD5_BLOCK_WORDS 16
|
|
|
|
|
#define MD5_HASH_WORDS 4
|
|
|
|
|
|
|
|
|
|
struct md5_ctx {
|
|
|
|
|
u32 hash[MD5_HASH_WORDS];
|
|
|
|
|
u32 block[MD5_BLOCK_WORDS];
|
|
|
|
|
u64 byte_count;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MD5_CTX_SIZE sizeof ( struct md5_ctx )
|
|
|
|
|
|
2007-01-30 14:55:17 +00:00
|
|
|
extern struct crypto_algorithm md5_algorithm;
|
2006-11-15 04:22:22 +00:00
|
|
|
|
|
|
|
|
#endif /* _GPXE_MD5_H */
|