MD5.h
上传用户:woshihumen
上传日期:2013-07-18
资源大小:484k
文件大小:4k
源码类别:

Email服务器

开发平台:

Visual C++

  1. /*
  2.  *  XMail by Davide Libenzi ( Intranet and Internet mail server )
  3.  *  Copyright (C) 1999,..,2004  Davide Libenzi
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  *
  19.  *  Written by      Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995
  20.  *  Written by      Glynn Clements <glynn@sensei.co.uk>, 1997
  21.  *  Modified by     Davide Libenzi <davidel@xmailserver.org>, 2000
  22.  *
  23.  */
  24. #ifndef _MD5_H
  25. #define _MD5_H
  26. typedef SYS_UINT32 md5_uint32;
  27. /* Structure to save state of computation between the single steps.  */
  28. struct md5_ctx {
  29. md5_uint32 A;
  30. md5_uint32 B;
  31. md5_uint32 C;
  32. md5_uint32 D;
  33. md5_uint32 total[2];
  34. md5_uint32 buflen;
  35. char buffer[128];
  36. };
  37. /*
  38.  * The following three functions are build up the low level used in
  39.  * the functions `md5_stream' and `md5_buffer'.
  40.  */
  41. /* Initialize structure containing state of computation.
  42.    (RFC 1321, 3.3: Step 3)  */
  43. extern void md5_init_ctx(struct md5_ctx *ctx);
  44. /* Starting with the result of former calls of this function (or the
  45.    initialization function update the context for the next LEN bytes
  46.    starting at BUFFER.
  47.    It is necessary that LEN is a multiple of 64!!! */
  48. extern void md5_process_block(const void *buffer, size_t len, struct md5_ctx *ctx);
  49. /* Starting with the result of former calls of this function (or the
  50.    initialization function update the context for the next LEN bytes
  51.    starting at BUFFER.
  52.    It is NOT required that LEN is a multiple of 64.  */
  53. extern void md5_process_bytes(const void *buffer, size_t len, struct md5_ctx *ctx);
  54. /* Process the remaining bytes in the buffer and put result from CTX
  55.    in first 16 bytes following RESBUF.  The result is always in little
  56.    endian byte order, so that a byte-wise output yields to the wanted
  57.    ASCII representation of the message digest.
  58.    IMPORTANT: On some systems it is required that RESBUF is correctly
  59.    aligned for a 32 bits value.  */
  60. extern void *md5_finish_ctx(struct md5_ctx *ctx, void *resbuf);
  61. /* Put result from CTX in first 16 bytes following RESBUF.  The result is
  62.    always in little endian byte order, so that a byte-wise output yields
  63.    to the wanted ASCII representation of the message digest.
  64.    IMPORTANT: On some systems it is required that RESBUF is correctly
  65.    aligned for a 32 bits value.  */
  66. extern void *md5_read_ctx(const struct md5_ctx *ctx, void *resbuf);
  67. /* Compute MD5 message digest for bytes read from STREAM.  The
  68.    resulting message digest number will be written into the 16 bytes
  69.    beginning at RESBLOCK.  */
  70. extern int md5_stream(FILE * stream, void *resblock);
  71. /* Compute MD5 message digest for LEN bytes beginning at BUFFER.  The
  72.    result is always in little endian byte order, so that a byte-wise
  73.    output yields to the wanted ASCII representation of the message
  74.    digest.  */
  75. extern void *md5_buffer(const char *buffer, size_t len, void *resblock);
  76. extern void md5_hex(unsigned char *src, char *dst);
  77. extern void do_md5_file(FILE * src, long start, long bytes, char *hash);
  78. extern void do_md5_string(char *pass, int passlen, char *hash);
  79. #endif