~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/sha1.h

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
  Function Prototypes
58
58
*/
59
59
 
60
 
#ifdef __cplusplus
61
 
extern "C" {
62
 
#endif
63
 
 
64
 
  int mysql_sha1_reset(SHA1_CONTEXT*);
65
 
  int mysql_sha1_input(SHA1_CONTEXT*, const uint8_t *, unsigned int);
66
 
  int mysql_sha1_result(SHA1_CONTEXT* , uint8_t Message_Digest[SHA1_HASH_SIZE]);
67
 
 
68
 
#ifdef __cplusplus
69
 
}
70
 
#endif
 
60
C_MODE_START
 
61
 
 
62
int mysql_sha1_reset(SHA1_CONTEXT*);
 
63
int mysql_sha1_input(SHA1_CONTEXT*, const uint8_t *, unsigned int);
 
64
int mysql_sha1_result(SHA1_CONTEXT* , uint8_t Message_Digest[SHA1_HASH_SIZE]);
 
65
 
 
66
C_MODE_END