various: add GLIB_AVAILABLE_IN_ALL everywhere else
[glib.git] / glib / gchecksum.h
blobba500a2de999f59e2fa5280bb144d3a53d3b52b4
1 /* gchecksum.h - data hashing functions
3 * Copyright (C) 2007 Emmanuele Bassi <ebassi@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __G_CHECKSUM_H__
22 #define __G_CHECKSUM_H__
24 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
25 #error "Only <glib.h> can be included directly."
26 #endif
28 #include <glib/gtypes.h>
29 #include <glib/gbytes.h>
31 G_BEGIN_DECLS
33 /**
34 * GChecksumType:
35 * @G_CHECKSUM_MD5: Use the MD5 hashing algorithm
36 * @G_CHECKSUM_SHA1: Use the SHA-1 hashing algorithm
37 * @G_CHECKSUM_SHA256: Use the SHA-256 hashing algorithm
38 * @G_CHECKSUM_SHA512: Use the SHA-512 hashing algorithm
40 * The hashing algorithm to be used by #GChecksum when performing the
41 * digest of some data.
43 * Note that the #GChecksumType enumeration may be extended at a later
44 * date to include new hashing algorithm types.
46 * Since: 2.16
48 typedef enum {
49 G_CHECKSUM_MD5,
50 G_CHECKSUM_SHA1,
51 G_CHECKSUM_SHA256,
52 G_CHECKSUM_SHA512
53 } GChecksumType;
55 /**
56 * GChecksum:
58 * An opaque structure representing a checksumming operation.
59 * To create a new GChecksum, use g_checksum_new(). To free
60 * a GChecksum, use g_checksum_free().
62 * Since: 2.16
64 typedef struct _GChecksum GChecksum;
66 GLIB_AVAILABLE_IN_ALL
67 gssize g_checksum_type_get_length (GChecksumType checksum_type);
69 GLIB_AVAILABLE_IN_ALL
70 GChecksum * g_checksum_new (GChecksumType checksum_type);
71 GLIB_AVAILABLE_IN_ALL
72 void g_checksum_reset (GChecksum *checksum);
73 GLIB_AVAILABLE_IN_ALL
74 GChecksum * g_checksum_copy (const GChecksum *checksum);
75 GLIB_AVAILABLE_IN_ALL
76 void g_checksum_free (GChecksum *checksum);
77 GLIB_AVAILABLE_IN_ALL
78 void g_checksum_update (GChecksum *checksum,
79 const guchar *data,
80 gssize length);
81 GLIB_AVAILABLE_IN_ALL
82 const gchar * g_checksum_get_string (GChecksum *checksum);
83 GLIB_AVAILABLE_IN_ALL
84 void g_checksum_get_digest (GChecksum *checksum,
85 guint8 *buffer,
86 gsize *digest_len);
88 GLIB_AVAILABLE_IN_ALL
89 gchar *g_compute_checksum_for_data (GChecksumType checksum_type,
90 const guchar *data,
91 gsize length);
92 GLIB_AVAILABLE_IN_ALL
93 gchar *g_compute_checksum_for_string (GChecksumType checksum_type,
94 const gchar *str,
95 gssize length);
97 GLIB_AVAILABLE_IN_2_34
98 gchar *g_compute_checksum_for_bytes (GChecksumType checksum_type,
99 GBytes *data);
101 G_END_DECLS
103 #endif /* __G_CHECKSUM_H__ */