annotate src/sha.h @ 8310:cc3a65c19ecf
[gaim-migrate @ 9034]
<nosnilmot> I think someone should remove buddy_chat.c from POTFILES.in
===
can you commit this fix? i cant do it from work...
----- Original Message -----
From: <seven@nimrod-online.com>
To: <gaim@robflynn.com>
Sent: Thursday, February 19, 2004 10:25 AM
Subject: 'nl.po' typo
> Dear Rob,
>
> Yesterday i sent an e-mail to your sourceforge account. I bet you
> never read it, so here it is again (in short ;)). First of all, love
> Gaim, hate MSN Messenger 6.1, so I use it ;). When I got rather bored
> I started reading the dutch translation (nl.po), to look for any
> mistakes, and hey, I found one! Where it says
> #~ msgid "State:"
> #~ msgstr "Privincie:"
> it should say:
> #~ msgid "State:"
> #~ msgstr "Provincie:"
> Well, that was about all
>
> Roy Spliet.
committer: Tailor Script <tailor@pidgin.im>
| author |
Sean Egan <seanegan@gmail.com> |
| date |
Sat, 21 Feb 2004 20:32:06 +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
|