2015-11-13 23:08:28 +08:00
|
|
|
/*
|
|
|
|
* BIRD Library -- MD5 Hash Function and HMAC-MD5 Function
|
|
|
|
*
|
|
|
|
* (c) 2015 CZ.NIC z.s.p.o.
|
|
|
|
*
|
|
|
|
* Adapted for BIRD by Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
1998-05-04 00:43:39 +08:00
|
|
|
|
2015-11-13 23:08:28 +08:00
|
|
|
#ifndef _BIRD_MD5_H_
|
|
|
|
#define _BIRD_MD5_H_
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define MD5_SIZE 16
|
|
|
|
#define MD5_HEX_SIZE 33
|
|
|
|
#define MD5_BLOCK_SIZE 64
|
|
|
|
|
|
|
|
|
2016-10-25 23:04:17 +08:00
|
|
|
struct hash_context;
|
|
|
|
|
2015-11-13 23:08:28 +08:00
|
|
|
struct md5_context {
|
|
|
|
u32 buf[4];
|
|
|
|
u32 bits[2];
|
|
|
|
byte in[64];
|
1998-05-04 00:43:39 +08:00
|
|
|
};
|
|
|
|
|
2015-11-13 23:08:28 +08:00
|
|
|
|
2016-10-25 23:04:17 +08:00
|
|
|
void md5_init(struct hash_context *ctx);
|
|
|
|
void md5_update(struct hash_context *ctx, const byte *buf, uint len);
|
|
|
|
byte *md5_final(struct hash_context *ctx);
|
2015-11-13 23:08:28 +08:00
|
|
|
|
1998-05-04 00:43:39 +08:00
|
|
|
|
2015-11-13 23:08:28 +08:00
|
|
|
#endif /* _BIRD_MD5_H_ */
|