view src/sha.h @ 8719:513b8bbcc104

[gaim-migrate @ 9474] " This fixes a bug where pasting a link, or in general clicking in the middle of it and then sending would get the link tag stuck on, and everything you typed after that would be a link, unless you pasted some nonlink rich text. This also makes it so you can't append to a link when it's the last character of the buffer, like you can every other tag. Also, I made some slight improvements to copy/pasting. Seems the length parameter (in pasted_received_cb) is the total bytes, not the number of x bit (where x often = 16) units. So that (length * (bits/8)) thing that I think Sean was doing was causing problems." --Tim Ringenbach - marv_sf oh and i have apparently attributed much of datallah's work today to other people committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 20 Apr 2004 04:08:24 +0000
parents 0f6673c1ae38
children 00138e366ef8
line wrap: on
line source

#if (SIZEOF_INT == 4)
typedef unsigned int uint32;
#elif (SIZEOF_SHORT == 4)
typedef unsigned short uint32;
#else
typedef unsigned int uint32;
#endif /* HAVEUINT32 */
 
int strprintsha(char *dest, int *hashval);
 
typedef struct {
  unsigned long H[5];
  unsigned long W[80];
  int lenW;
  unsigned long sizeHi,sizeLo;
} SHA_CTX;
 
void shaInit(SHA_CTX *ctx);
void shaUpdate(SHA_CTX *ctx, unsigned char *dataIn, int len);
void shaFinal(SHA_CTX *ctx, unsigned char hashout[20]);
void shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]);