X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=ssh.h;h=a9057e721658e82f4c608c47eeeefb8ebe4ce274;hb=300b7780926079795cde1d50ead7ff0d68d960fb;hp=f758174fb0f3c0838ef48e981a04f44bf2bc98ce;hpb=9922072a8d0c53222fb38665a85d1588f58b5d65;p=PuTTY.git diff --git a/ssh.h b/ssh.h index f758174f..a9057e72 100644 --- a/ssh.h +++ b/ssh.h @@ -28,13 +28,18 @@ typedef unsigned int uint32; unsigned long crc32(const void *s, size_t len); +typedef struct { + uint32 h[4]; +} MD5_Core_State; + struct MD5Context { #ifdef MSCRYPTOAPI unsigned long hHash; #else - uint32 buf[4]; - uint32 bits[2]; - unsigned char in[64]; + MD5_Core_State core; + unsigned char block[64]; + int blkused; + uint32 lenhi, lenlo; #endif };