Blame glib/ghmac.h

Packit ae235b
/* ghmac.h - secure data hashing
Packit ae235b
 *
Packit ae235b
 * Copyright (C) 2011  Stef Walter  <stefw@collabora.co.uk>
Packit ae235b
 *
Packit ae235b
 * This library is free software; you can redistribute it and/or
Packit ae235b
 * modify it under the terms of the GNU Lesser General Public
Packit ae235b
 * License as published by the Free Software Foundation; either
Packit ae235b
 * version 2.1 of the License, or (at your option) any later version.
Packit ae235b
 *
Packit ae235b
 * This library is distributed in the hope that it will be useful,
Packit ae235b
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit ae235b
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit ae235b
 * Lesser General Public License for more details.
Packit ae235b
 *
Packit ae235b
 * You should have received a copy of the GNU Lesser General Public License
Packit ae235b
 * along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit ae235b
 */
Packit ae235b
Packit ae235b
#ifndef __G_HMAC_H__
Packit ae235b
#define __G_HMAC_H__
Packit ae235b
Packit ae235b
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
Packit ae235b
#error "Only <glib.h> can be included directly."
Packit ae235b
#endif
Packit ae235b
Packit ae235b
#include <glib/gtypes.h>
Packit ae235b
#include "gchecksum.h"
Packit ae235b
Packit ae235b
G_BEGIN_DECLS
Packit ae235b
Packit ae235b
/**
Packit ae235b
 * GHmac:
Packit ae235b
 *
Packit ae235b
 * An opaque structure representing a HMAC operation.
Packit ae235b
 * To create a new GHmac, use g_hmac_new(). To free
Packit ae235b
 * a GHmac, use g_hmac_unref().
Packit ae235b
 *
Packit ae235b
 * Since: 2.30
Packit ae235b
 */
Packit ae235b
typedef struct _GHmac       GHmac;
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
GHmac *               g_hmac_new                    (GChecksumType  digest_type,
Packit ae235b
                                                     const guchar  *key,
Packit ae235b
                                                     gsize          key_len);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
GHmac *               g_hmac_copy                   (const GHmac   *hmac);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
GHmac *               g_hmac_ref                    (GHmac         *hmac);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
void                  g_hmac_unref                  (GHmac         *hmac);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
void                  g_hmac_update                 (GHmac         *hmac,
Packit ae235b
                                                     const guchar  *data,
Packit ae235b
                                                     gssize         length);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
const gchar *         g_hmac_get_string             (GHmac         *hmac);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
void                  g_hmac_get_digest             (GHmac         *hmac,
Packit ae235b
                                                     guint8        *buffer,
Packit ae235b
                                                     gsize         *digest_len);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
gchar                *g_compute_hmac_for_data       (GChecksumType  digest_type,
Packit ae235b
                                                     const guchar  *key,
Packit ae235b
                                                     gsize          key_len,
Packit ae235b
                                                     const guchar  *data,
Packit ae235b
                                                     gsize          length);
Packit ae235b
GLIB_AVAILABLE_IN_2_30
Packit ae235b
gchar                *g_compute_hmac_for_string     (GChecksumType  digest_type,
Packit ae235b
                                                     const guchar  *key,
Packit ae235b
                                                     gsize          key_len,
Packit ae235b
                                                     const gchar   *str,
Packit ae235b
                                                     gssize         length);
Packit ae235b
GLIB_AVAILABLE_IN_2_50
Packit ae235b
gchar               *g_compute_hmac_for_bytes       (GChecksumType  digest_type,
Packit ae235b
                                                     GBytes        *key,
Packit ae235b
                                                     GBytes        *data);
Packit ae235b
Packit ae235b
Packit ae235b
G_END_DECLS
Packit ae235b
Packit ae235b
#endif /* __G_CHECKSUM_H__ */