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

File: [local] / OpenXM / src / ox_ntl / crypt / sha1 / sha1.h (download)

Revision 1.5, Thu Jul 15 14:51:42 2004 UTC (19 years, 11 months ago) by iwane
Branch: MAIN
Changes since 1.4: +7 -4 lines

added cast-128 encryption algorithm

/* $OpenXM: OpenXM/src/ox_ntl/crypt/sha1/sha1.h,v 1.5 2004/07/15 14:51:42 iwane Exp $ */

#ifndef __SHA1_H__
#define __SHA1_H__

#include <sys/types.h>

#ifdef __cplusplus
extern "C" {
#endif

int	sha1(unsigned char *, const unsigned char *, size_t _len);
int	sha1_h(unsigned char *, const unsigned char *, size_t _len, const uint32_t *_h);

int	fsha1(unsigned char *, int _fd);

void	sha1_md	(uint32_t *, const unsigned char *);


#ifdef __cplusplus
}
#endif

#ifdef _WITH_NTL_

#include <NTL/ZZ.h>

int	ntl_sha1(ZZ &, const ZZ &);
int	ntl_sha1_h(ZZ &, const ZZ &, uint32_t *);

#endif /* _WITH_NTL */


#endif /* __SHA1_H__ */