123456789101112131415161718 |
- #ifndef NULLSOFT_ML_LOCAL_MD5_H
- #define NULLSOFT_ML_LOCAL_MD5_H
- #include <bfc/platform/types.h>
- typedef struct
- {
- uint32_t state[4];
- uint32_t count[2];
- uint8_t buffer[64];
- } MD5_CTX;
- void MD5Init(MD5_CTX *);
- void MD5Update(MD5_CTX *, uint8_t *, unsigned int);
- void MD5Final(uint8_t [16], MD5_CTX *);
- #endif
|