/usr/include/gwyddion/libgwyddion/gwymd5.h is in libgwyddion20-dev 2.50-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
* $Id: gwymd5.h 20678 2017-12-18 18:26:55Z yeti-dn $
*
* This code implements the MD5 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by Colin Plumb in 1993, no copyright is claimed.
* This code is in the public domain; do with it what you wish.
*
* Equivalent code is available from RSA Data Security, Inc.
* This code has been tested against that, and is equivalent,
* except that you don't need to include two pages of legalese
* with every copy.
*
* GWYified 2002 by Sven Neumann <sven@gimp.org>
* Gwyddionized 2004 by Yeti <yeti@physics.muni.cz>
*/
/* parts of this file are :
* Written March 1993 by Branko Lankester
* Modified June 1993 by Colin Plumb for altered md5.c.
* Modified October 1995 by Erik Troan for RPM
*/
#ifndef __GWY_MD5_H__
#define __GWY_MD5_H__
#include <glib.h>
G_BEGIN_DECLS
/* For information look into the C source or the html documentation */
void gwy_md5_get_digest (const gchar *buffer,
gint buffer_size,
guchar digest[16]);
G_END_DECLS
#endif /* __GWY_MD5_H__ */
/* vim: set cin et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|