~ubuntu-branches/ubuntu/gutsy/gnome-games/gutsy-updates

« back to all changes in this revision

Viewing changes to dependencies/libggz/security/hashfunc.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2006-11-08 15:56:11 UTC
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20061108155611-wv3ofq76d2dnddt3
Tags: upstream-2.17.2
ImportĀ upstreamĀ versionĀ 2.17.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GGZ_HASH_H
 
2
#define GGZ_HASH_H
 
3
 
 
4
/* Create a hash over a text, allocating space as needed */
 
5
hash_t ggz_hash_create(const char *algo, const char *text);
 
6
 
 
7
/* Create a HMAC hash over a text, allocating space as needed */
 
8
hash_t ggz_hmac_create(const char *algo, const char *text, const char *secret);
 
9
 
 
10
#endif
 
11