Mercurial > pidgin.yaz
annotate src/sha.h @ 8525:d8dfab355d2c
[gaim-migrate @ 9264]
--enable-debug no longer breaks compilation when using gtk 2.4. This was
a problem for me personally for a long time, and with the release of gtk
2.4, we're going to see it more without this. It affected gargnome (I think
it was garnome?) as well. I added a --disable-deprecated flag for configure
that will disable deprecated gtk/glib/pango code. This should suffice, imho.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Tue, 30 Mar 2004 06:00:04 +0000 |
parents | 0f6673c1ae38 |
children | 00138e366ef8 |
rev | line source |
---|---|
6987 | 1 #if (SIZEOF_INT == 4) |
2 typedef unsigned int uint32; | |
3 #elif (SIZEOF_SHORT == 4) | |
4 typedef unsigned short uint32; | |
5 #else | |
6 typedef unsigned int uint32; | |
7 #endif /* HAVEUINT32 */ | |
8 | |
9 int strprintsha(char *dest, int *hashval); | |
10 | |
11 typedef struct { | |
12 unsigned long H[5]; | |
13 unsigned long W[80]; | |
14 int lenW; | |
15 unsigned long sizeHi,sizeLo; | |
16 } SHA_CTX; | |
17 | |
18 void shaInit(SHA_CTX *ctx); | |
19 void shaUpdate(SHA_CTX *ctx, unsigned char *dataIn, int len); | |
20 void shaFinal(SHA_CTX *ctx, unsigned char hashout[20]); | |
21 void shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]); | |
22 |