~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/sha1.h

MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
typedef struct SHA1_CONTEXT
47
47
{
48
 
  ulonglong  Length;            /* Message length in bits      */
 
48
  uint64_t  Length;             /* Message length in bits      */
49
49
  uint32 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? */