md5-gnu.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:5k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* Declaration of functions and data types used for MD5 sum computing
  2.    library functions.
  3.    Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
  4.    This file is part of the GNU C Library.
  5.    The GNU C Library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public License as
  7.    published by the Free Software Foundation; either version 2 of the
  8.    License, or (at your option) any later version.
  9.    The GNU C Library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with the GNU C Library; see the file COPYING.LIB.  If not,
  15.    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16.    Boston, MA 02111-1307, USA.  */
  17. #ifndef _MD5_H
  18. #define _MD5_H 1
  19. #include <stdio.h>
  20. #if defined HAVE_LIMITS_H || _LIBC
  21. # include <limits.h>
  22. #endif
  23. /* The following contortions are an attempt to use the C preprocessor
  24.    to determine an unsigned integral type that is 32 bits wide.  An
  25.    alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
  26.    doing that would require that the configure script compile and *run*
  27.    the resulting executable.  Locally running cross-compiled executables
  28.    is usually not possible.  */
  29. #ifdef _LIBC
  30. # include <sys/types.h>
  31. typedef u_int32_t md5_uint32;
  32. #else
  33. # if defined __STDC__ && __STDC__
  34. #  define UINT_MAX_32_BITS 4294967295U
  35. # else
  36. #  define UINT_MAX_32_BITS 0xFFFFFFFF
  37. # endif
  38. /* If UINT_MAX isn't defined, assume it's a 32-bit type.
  39.    This should be valid for all systems GNU cares about because
  40.    that doesn't include 16-bit systems, and only modern systems
  41.    (that certainly have <limits.h>) have 64+-bit integral types.  */
  42. # ifndef UINT_MAX
  43. #  define UINT_MAX UINT_MAX_32_BITS
  44. # endif
  45. # if UINT_MAX == UINT_MAX_32_BITS
  46.    typedef unsigned int md5_uint32;
  47. # else
  48. #  if USHRT_MAX == UINT_MAX_32_BITS
  49.     typedef unsigned short md5_uint32;
  50. #  else
  51. #   if ULONG_MAX == UINT_MAX_32_BITS
  52.      typedef unsigned long md5_uint32;
  53. #   else
  54.      /* The following line is intended to evoke an error.
  55.         Using #error is not portable enough.  */
  56.      "Cannot determine unsigned 32-bit data type."
  57. #   endif
  58. #  endif
  59. # endif
  60. #endif
  61. #undef __P
  62. #if defined (__STDC__) && __STDC__
  63. # define __P(x) x
  64. #else
  65. # define __P(x) ()
  66. #endif
  67. /* Structure to save state of computation between the single steps.  */
  68. struct md5_ctx
  69. {
  70.   md5_uint32 A;
  71.   md5_uint32 B;
  72.   md5_uint32 C;
  73.   md5_uint32 D;
  74.   md5_uint32 total[2];
  75.   md5_uint32 buflen;
  76.   char buffer[128];
  77. };
  78. /*
  79.  * The following three functions are build up the low level used in
  80.  * the functions `md5_stream' and `md5_buffer'.
  81.  */
  82. /* Initialize structure containing state of computation.
  83.    (RFC 1321, 3.3: Step 3)  */
  84. extern void __md5_init_ctx __P ((struct md5_ctx *ctx));
  85. extern void md5_init_ctx __P ((struct md5_ctx *ctx));
  86. /* Starting with the result of former calls of this function (or the
  87.    initialization function update the context for the next LEN bytes
  88.    starting at BUFFER.
  89.    It is necessary that LEN is a multiple of 64!!! */
  90. extern void __md5_process_block __P ((const void *buffer, size_t len,
  91.       struct md5_ctx *ctx));
  92. extern void md5_process_block __P ((const void *buffer, size_t len,
  93.     struct md5_ctx *ctx));
  94. /* Starting with the result of former calls of this function (or the
  95.    initialization function update the context for the next LEN bytes
  96.    starting at BUFFER.
  97.    It is NOT required that LEN is a multiple of 64.  */
  98. extern void __md5_process_bytes __P ((const void *buffer, size_t len,
  99.       struct md5_ctx *ctx));
  100. extern void md5_process_bytes __P ((const void *buffer, size_t len,
  101.     struct md5_ctx *ctx));
  102. /* Process the remaining bytes in the buffer and put result from CTX
  103.    in first 16 bytes following RESBUF.  The result is always in little
  104.    endian byte order, so that a byte-wise output yields to the wanted
  105.    ASCII representation of the message digest.
  106.    IMPORTANT: On some systems it is required that RESBUF is correctly
  107.    aligned for a 32 bits value.  */
  108. extern void *__md5_finish_ctx __P ((struct md5_ctx *ctx, void *resbuf));
  109. extern void *md5_finish_ctx __P ((struct md5_ctx *ctx, void *resbuf));
  110. /* Put result from CTX in first 16 bytes following RESBUF.  The result is
  111.    always in little endian byte order, so that a byte-wise output yields
  112.    to the wanted ASCII representation of the message digest.
  113.    IMPORTANT: On some systems it is required that RESBUF is correctly
  114.    aligned for a 32 bits value.  */
  115. extern void *__md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
  116. extern void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
  117. /* Compute MD5 message digest for bytes read from STREAM.  The
  118.    resulting message digest number will be written into the 16 bytes
  119.    beginning at RESBLOCK.  */
  120. extern int __md5_stream __P ((FILE *stream, void *resblock));
  121. /* Compute MD5 message digest for LEN bytes beginning at BUFFER.  The
  122.    result is always in little endian byte order, so that a byte-wise
  123.    output yields to the wanted ASCII representation of the message
  124.    digest.  */
  125. extern void *__md5_buffer __P ((const char *buffer, size_t len,
  126. void *resblock));
  127. extern void *md5_buffer __P ((const char *buffer, size_t len,
  128.       void *resblock));
  129. #endif /* md5.h */