xref: /openbsd-src/lib/libc/hidden/md5.h (revision 3d64e8feec47804a0d4d7bb56c249cb2ea5c0f99)
1*3d64e8feSguenther /*	$OpenBSD: md5.h,v 1.2 2015/09/13 08:59:03 guenther Exp $	*/
289db3a20Sguenther /*
389db3a20Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
489db3a20Sguenther  *
589db3a20Sguenther  * Permission to use, copy, modify, and distribute this software for any
689db3a20Sguenther  * purpose with or without fee is hereby granted, provided that the above
789db3a20Sguenther  * copyright notice and this permission notice appear in all copies.
889db3a20Sguenther  *
989db3a20Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1089db3a20Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1189db3a20Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1289db3a20Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1389db3a20Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1489db3a20Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1589db3a20Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1689db3a20Sguenther  */
1789db3a20Sguenther 
1889db3a20Sguenther #ifndef _LIBC_MD5_H_
1989db3a20Sguenther #define _LIBC_MD5_H_
2089db3a20Sguenther 
2189db3a20Sguenther #include_next <md5.h>
2289db3a20Sguenther 
2389db3a20Sguenther PROTO_NORMAL(MD5Data);
2489db3a20Sguenther PROTO_NORMAL(MD5End);
2589db3a20Sguenther PROTO_NORMAL(MD5File);
2689db3a20Sguenther PROTO_NORMAL(MD5FileChunk);
2789db3a20Sguenther PROTO_NORMAL(MD5Final);
2889db3a20Sguenther PROTO_NORMAL(MD5Init);
2989db3a20Sguenther PROTO_NORMAL(MD5Pad);
3089db3a20Sguenther PROTO_NORMAL(MD5Transform);
3189db3a20Sguenther PROTO_NORMAL(MD5Update);
3289db3a20Sguenther 
3389db3a20Sguenther #endif /* _LIBC_MD5_H_ */
34