sha.h
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:3k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2. ------------------------------------------------------------------
  3.   Copyright
  4.   Sun Microsystems, Inc.
  5.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  6.   Reserved.
  7.   Permission is hereby granted, free of charge, to any person
  8.   obtaining a copy of this software and associated documentation
  9.   files (the "Software"), to deal in the Software without
  10.   restriction, including without limitation the rights to use,
  11.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  12.   copies of the Software or derivatives of the Software, and to 
  13.   permit persons to whom the Software or its derivatives is furnished 
  14.   to do so, subject to the following conditions:
  15.   The above copyright notice and this permission notice shall be
  16.   included in all copies or substantial portions of the Software.
  17.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  21.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  24.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  26.   shall not be used in advertising or otherwise to promote
  27.   the sale, use or other dealings in this Software or its derivatives 
  28.   without prior written authorization from Sun Microsystems, Inc.
  29. */
  30. #pragma ident "@(#)sha.h 1.2 96/01/29 Sun Microsystems"
  31. #ifndef SHA_H
  32. #define SHA_H
  33. /*
  34.  * NIST Secure Hash Algorithm.
  35.  *
  36.  * Written 2 September 1992, Peter C. Gutmann.
  37.  * This implementation placed in the public domain.
  38.  *
  39.  * Modified 1 June 1993, Colin Plumb.
  40.  * Renamed to SHA and comments updated a bit 1 November 1995 Colin Plumb.
  41.  * These modifications placed in the public domain.
  42.  *
  43.  * Comments to pgut1@cs.aukuni.ac.nz
  44.  */
  45. /* Typedefs for various word sizes */
  46. typedef unsigned long word32;
  47. typedef unsigned char word8;
  48. /* The SHA block size and message digest sizes, in bytes */
  49. #define SHA_BLOCKSIZE 64
  50. #define SHA_DIGESTSIZE 20
  51. /*
  52.  * The structure for storing SHA info.
  53.  * data[] is placed first in case offsets of 0 are faster
  54.  * for some reason; it's the most often accessed field.
  55.  */
  56. struct SHAContext {
  57. word32 data[ 16 ]; /* SHA data buffer */
  58. word32 digest[ 5 ]; /* Message digest */
  59. #ifdef HAVE64
  60. word64 count;
  61. #else
  62. word32 countHi, countLo; /* 64-bit byte count */
  63. #endif
  64. };
  65. /* Which standard?  FIPS 180 or FIPS 180.1? */
  66. #define SHA_VERSION 1
  67. /* Whether the machine is little-endian or not */
  68. #if !defined(BIG_ENDIAN) && !defined(LITTLE_ENDIAN)
  69. #define BIG_ENDIAN 1
  70. #endif
  71. #ifdef __cplusplus
  72. extern "C" {
  73. #endif
  74. void shaInit(struct SHAContext *sha);
  75. void shaUpdate(struct SHAContext *sha, word8 const *buffer, unsigned count);
  76. void shaFinal(struct SHAContext *shaInfo, word8 *hash);
  77. void shaTransform(struct SHAContext *sha);
  78. #ifdef __cplusplus
  79. }
  80. #endif
  81. #endif