blobmsg_json: include json.h inside blobmsg_json.c instead of the public header file
[project/libubox.git] / md5.h
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #ifndef __PROCD_MD5_H
16 #define __PROCD_MD5_H
17
18 #include <stdint.h>
19 #include <stddef.h>
20
21 typedef struct md5_ctx {
22         uint32_t A;
23         uint32_t B;
24         uint32_t C;
25         uint32_t D;
26         uint64_t total;
27         uint32_t buflen;
28         char buffer[128];
29 } md5_ctx_t;
30
31 void md5_begin(md5_ctx_t *ctx);
32 void md5_hash(const void *data, size_t length, md5_ctx_t *ctx);
33 void md5_end(void *resbuf, md5_ctx_t *ctx);
34 int md5sum(char *file, uint32_t *md5);
35
36 #endif