mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-22 07:23:23 +00:00
23 lines
385 B
C
23 lines
385 B
C
#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 */
|