sechash.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #ifndef _HASH_H_
  2. #define _HASH_H_
  3. /*
  4.  * The contents of this file are subject to the Mozilla Public
  5.  * License Version 1.1 (the "License"); you may not use this file
  6.  * except in compliance with the License. You may obtain a copy of
  7.  * the License at http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS
  10.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.  * implied. See the License for the specific language governing
  12.  * rights and limitations under the License.
  13.  * 
  14.  * The Original Code is the Netscape security libraries.
  15.  * 
  16.  * The Initial Developer of the Original Code is Netscape
  17.  * Communications Corporation.  Portions created by Netscape are 
  18.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  19.  * Rights Reserved.
  20.  * 
  21.  * Contributor(s):
  22.  * 
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  *
  35.  * hash.h - public data structures and prototypes for the hashing library
  36.  *
  37.  * $Id: sechash.h,v 1.1 2000/03/31 19:46:05 relyea%netscape.com Exp $
  38.  */
  39. #include "seccomon.h"
  40. #include "hasht.h"
  41. SEC_BEGIN_PROTOS
  42. /*
  43. ** Generic hash api.  
  44. */
  45. extern unsigned int  HASH_ResultLen(HASH_HashType type);
  46. extern unsigned int  HASH_ResultLenContext(HASHContext *context);
  47. extern SECStatus     HASH_HashBuf(HASH_HashType type,
  48.  unsigned char *dest,
  49.  unsigned char *src,
  50.  uint32 src_len);
  51. extern HASHContext * HASH_Create(HASH_HashType type);
  52. extern HASHContext * HASH_Clone(HASHContext *context);
  53. extern void          HASH_Destroy(HASHContext *context);
  54. extern void          HASH_Begin(HASHContext *context);
  55. extern void          HASH_Update(HASHContext *context,
  56. const unsigned char *src,
  57. unsigned int len);
  58. extern void          HASH_End(HASHContext *context,
  59.      unsigned char *result,
  60.      unsigned int *result_len,
  61.      unsigned int max_result_len);
  62. SEC_END_PROTOS
  63. #endif /* _HASH_H_ */