[BACK]Return to sha1.h CVS log [TXT][DIR] Up to [local] / src / include

File: [local] / src / include / sha1.h (download)

Revision 1.5, Thu Jul 10 22:53:01 1997 UTC (26 years, 10 months ago) by millert
Branch: MAIN
Changes since 1.4: +16 -50 lines

Different sha1 functions (taken from netinet's if_sha1.c) that
are more consistent with md4/md5 functions.

/*	$OpenBSD: sha1.h,v 1.5 1997/07/10 22:53:01 millert Exp $	*/

/*
 * SHA-1 in C
 * By Steve Reid <steve@edmweb.com>
 * 100% Public Domain
 */

#ifndef _SHA1_H
#define _SHA1_H

typedef struct {
    u_int32_t state[5];
    u_int32_t count[2];  
    u_char buffer[64];
} SHA1_CTX;
  
void SHA1Transform __P((u_int32_t state[5], unsigned char buffer[64]));
void SHA1Init __P((SHA1_CTX* context));
void SHA1Update __P((SHA1_CTX* context, unsigned char* data, unsigned int len));
void SHA1Final __P((unsigned char digest[20], SHA1_CTX* context));

#endif /* _SHA1_H */