source: trunk/src/gcc/libjava/gnu/gcj/io/shs.h@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.6 KB
Line 
1/* --------------------------------- SHS.H ------------------------------- */
2
3/*
4 * NIST proposed Secure Hash Standard.
5 *
6 * Written 2 September 1992, Peter C. Gutmann.
7 * This implementation placed in the public domain.
8 *
9 * Comments to pgut1@cs.aukuni.ac.nz
10 */
11
12/* Useful defines/typedefs */
13
14#ifndef SHS_H
15#define SHS_H
16
17#include<config.h>
18#if HAVE_INTTYPES_H
19# include <inttypes.h>
20#else
21# if HAVE_STDINT_H
22# include <stdint.h>
23# else
24typedef unsigned int uint8_t __attribute__((mode(QI)));
25/* This is a blatant hack: on Solaris 2.5, pthread.h defines uint32_t
26 in pthread.h, which we sometimes include. We protect our
27 definition the same way Solaris 2.5 does, to avoid redefining it. */
28# ifndef _UINT32_T
29typedef unsigned int uint32_t __attribute__((mode(SI)));
30# endif
31# endif
32#endif
33
34/* The SHS block size and message digest sizes, in bytes */
35
36#define SHS_BLOCKSIZE 64
37#define SHS_DIGESTSIZE 20
38
39/* The structure for storing SHS info */
40
41typedef struct {
42 uint32_t digest [5]; /* Message digest */
43 uint32_t countLo, countHi; /* 64-bit bit count */
44 uint32_t data [16]; /* SHS data buffer */
45} SHS_INFO;
46
47/* Turn off prototypes if requested */
48#if (defined(NOPROTO) && defined(PROTO))
49# undef PROTO
50#endif
51
52/* Used to remove arguments in function prototypes for non-ANSI C */
53#ifdef PROTO
54# define OF(a) a
55#else /* !PROTO */
56# define OF(a) ()
57#endif /* ?PROTO */
58
59#define local static
60
61void shsInit OF((SHS_INFO *shsInfo));
62void shsUpdate OF((SHS_INFO *shsInfo, uint8_t *buffer, int count));
63void shsFinal OF((SHS_INFO *shsInfo));
64
65#endif
Note: See TracBrowser for help on using the repository browser.