~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/sha1.h

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  uint32_t Intermediate_Hash[SHA1_HASH_SIZE/4]; /* Message Digest  */
50
50
  int Computed;                 /* Is the digest computed?         */
51
51
  int Corrupted;                /* Is the message digest corrupted? */
52
 
  int16 Message_Block_Index;    /* Index into message block array   */
53
 
  uint8 Message_Block[64];      /* 512-bit message blocks      */
 
52
  int16_t Message_Block_Index;  /* Index into message block array   */
 
53
  uint8_t Message_Block[64];    /* 512-bit message blocks      */
54
54
} SHA1_CONTEXT;
55
55
 
56
56
/*
60
60
C_MODE_START
61
61
 
62
62
int mysql_sha1_reset(SHA1_CONTEXT*);
63
 
int mysql_sha1_input(SHA1_CONTEXT*, const uint8 *, unsigned int);
64
 
int mysql_sha1_result(SHA1_CONTEXT* , uint8 Message_Digest[SHA1_HASH_SIZE]);
 
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
65
 
66
66
C_MODE_END