summaryrefslogblamecommitdiffstats
path: root/src/include/gpxe/md5.h
blob: 304a0e646cbf02c612d4753967a1c75419ce5816 (plain) (tree)
1
2
3
4
5


                   
                        
 













                                              
                                             

                        
#ifndef _GPXE_MD5_H
#define _GPXE_MD5_H

struct crypto_algorithm;

#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 )

extern struct crypto_algorithm md5_algorithm;

#endif /* _GPXE_MD5_H */