1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2012 Richard Hughes <richard@hughsie.com>
4  *
5  * Licensed under the GNU General Public License Version 2
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #if !defined (__COLORHUG_H_INSIDE__) && !defined (CH_COMPILATION)
23 #error "Only <colorhug.h> can be included directly."
24 #endif
25 
26 #ifndef __CH_HASH_H
27 #define __CH_HASH_H
28 
29 #include <glib.h>
30 
31 G_BEGIN_DECLS
32 
33 /* SHA1 hash */
34 typedef struct {
35 	guint8	bytes[20];
36 } ChSha1;
37 
38 gchar		*ch_sha1_to_string		(const ChSha1		*sha1);
39 gboolean	 ch_sha1_parse			(const gchar		*value,
40 						 ChSha1			*sha1,
41 						 GError			**error);
42 
43 G_END_DECLS
44 
45 #endif /* __CH_HASH_H */
46