GChecksum: move docs from tmpl to .c
authorRyan Lortie <desrt@desrt.ca>
Sun, 31 Jan 2010 05:05:48 +0000 (00:05 -0500)
committerRyan Lortie <desrt@desrt.ca>
Mon, 1 Feb 2010 15:28:39 +0000 (10:28 -0500)
docs/reference/glib/tmpl/.gitignore
docs/reference/glib/tmpl/checksum.sgml [deleted file]
glib/gchecksum.c

index 307edca..3dcf262 100644 (file)
@@ -1,5 +1,6 @@
 allocators.sgml
 base64.sgml
+checksum.sgml
 completion.sgml
 datasets.sgml
 datalist.sgml
diff --git a/docs/reference/glib/tmpl/checksum.sgml b/docs/reference/glib/tmpl/checksum.sgml
deleted file mode 100644 (file)
index 81abfe9..0000000
+++ /dev/null
@@ -1,145 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Data Checksums
-
-<!-- ##### SECTION Short_Description ##### -->
-Computes the checksum for data
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-GLib provides a generic API for computing checksums (or "digests") for a
-sequence of arbitrary bytes, using various hashing algorithms like MD5,
-SHA-1 and SHA-256. Checksums are commonly used in various environments and
-specifications.
-</para>
-
-<para>
-GLib supports incremental checksums using the GChecksum data structure, by
-calling g_checksum_update() as long as there's data available and then using
-g_checksum_get_string() or g_checksum_get_digest() to compute the checksum
-and return it either as a string in hexadecimal form, or as a raw sequence
-of bytes. To compute the checksum for binary blobs and NUL-terminated strings
-in one go, use the convenience functions g_compute_checksum_for_data() and
-g_compute_checksum_for_string(), respectively.
-</para>
-
-<para>
-Support for checksums has been added in GLib 2.16
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### ENUM GChecksumType ##### -->
-<para>
-
-</para>
-
-@G_CHECKSUM_MD5: 
-@G_CHECKSUM_SHA1: 
-@G_CHECKSUM_SHA256: 
-
-<!-- ##### FUNCTION g_checksum_type_get_length ##### -->
-<para>
-
-</para>
-
-@checksum_type: 
-@Returns: 
-
-
-<!-- ##### STRUCT GChecksum ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### FUNCTION g_checksum_new ##### -->
-<para>
-
-</para>
-
-@checksum_type: 
-@Returns: 
-
-
-<!-- ##### FUNCTION g_checksum_copy ##### -->
-<para>
-
-</para>
-
-@checksum: 
-@Returns: 
-
-
-<!-- ##### FUNCTION g_checksum_free ##### -->
-<para>
-
-</para>
-
-@checksum: 
-
-
-<!-- ##### FUNCTION g_checksum_reset ##### -->
-<para>
-
-</para>
-
-@checksum: 
-
-
-<!-- ##### FUNCTION g_checksum_update ##### -->
-<para>
-
-</para>
-
-@checksum: 
-@data: 
-@length: 
-
-
-<!-- ##### FUNCTION g_checksum_get_string ##### -->
-<para>
-
-</para>
-
-@checksum: 
-@Returns: 
-
-
-<!-- ##### FUNCTION g_checksum_get_digest ##### -->
-<para>
-
-</para>
-
-@checksum: 
-@buffer: 
-@digest_len: 
-
-
-<!-- ##### FUNCTION g_compute_checksum_for_data ##### -->
-<para>
-
-</para>
-
-@checksum_type: 
-@data: 
-@length: 
-@Returns: 
-
-
-<!-- ##### FUNCTION g_compute_checksum_for_string ##### -->
-<para>
-
-</para>
-
-@checksum_type: 
-@str: 
-@length: 
-@Returns: 
-
-
index 1611193..ad90727 100644 (file)
 
 #include "galias.h"
 
+/**
+ * SECTION: checksum
+ * @title: Data Checksums
+ * @short_description: Computes the checksum for data
+ *
+ * GLib provides a generic API for computing checksums (or "digests")
+ * for a sequence of arbitrary bytes, using various hashing algorithms
+ * like MD5, SHA-1 and SHA-256. Checksums are commonly used in various
+ * environments and specifications.
+ *
+ * GLib supports incremental checksums using the GChecksum data
+ * structure, by calling g_checksum_update() as long as there's data
+ * available and then using g_checksum_get_string() or
+ * g_checksum_get_digest() to compute the checksum and return it either
+ * as a string in hexadecimal form, or as a raw sequence of bytes. To
+ * compute the checksum for binary blobs and NUL-terminated strings in
+ * one go, use the convenience functions g_compute_checksum_for_data()
+ * and g_compute_checksum_for_string(), respectively.
+ *
+ * Support for checksums has been added in GLib 2.16
+ **/
+
 #define IS_VALID_TYPE(type)     ((type) >= G_CHECKSUM_MD5 && (type) <= G_CHECKSUM_SHA256)
 
 /* The fact that these are lower case characters is part of the ABI */