3 * $Id: sha.h,v 1.6 2004/04/08 01:36:15 mdw Exp $
5 * Implementation of the SHA-1 hash function
7 * (c) 1999 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of Catacomb.
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30 /*----- Notes on the SHA-1 hash function ----------------------------------*
32 * SHA (Secure Hash Algorithm) was designed by the NSA, for use with the
33 * Digital Signature Algorithm. It is defined by FIPS 180-1. It has gained
34 * wide acceptance since its initial publication, and is probably now most
35 * people's collision-resistant function of choice. The author prefers
36 * RIPEMD-160, for no particularly good reasons.
39 #ifndef CATACOMB_SHA_H
40 #define CATACOMB_SHA_H
46 /*----- Header files ------------------------------------------------------*/
48 #include <mLib/bits.h>
50 #ifndef CATACOMB_GHASH_H
54 /*----- Magic numbers -----------------------------------------------------*/
58 #define SHA_STATESZ 20
60 /*----- Data structures ---------------------------------------------------*/
62 typedef struct sha_ctx {
63 uint32 a, b, c, d, e; /* Chaining variables */
64 uint32 nl, nh; /* Byte count so far */
65 unsigned off; /* Offset into buffer */
66 octet buf[SHA_BUFSZ]; /* Accumulation buffer */
69 /*----- Functions provided ------------------------------------------------*/
71 /* --- @sha_compress@ --- *
73 * Arguments: @sha_ctx *ctx@ = pointer to context block
74 * @const void *sbuf@ = pointer to buffer of appropriate size
78 * Use: SHA compression function.
81 extern void sha_compress(sha_ctx */*ctx*/, const void */*sbuf*/);
83 /* --- @sha_init@ --- *
85 * Arguments: @sha_ctx *ctx@ = pointer to context block to initialize
89 * Use: Initializes a context block ready for hashing.
92 extern void sha_init(sha_ctx */*ctx*/);
94 /* --- @sha_set@ --- *
96 * Arguments: @sha_ctx *ctx@ = pointer to context block
97 * @const void *buf@ = pointer to state buffer
98 * @unsigned long count@ = current count of bytes processed
102 * Use: Initializes a context block from a given state. This is
103 * useful in cases where the initial hash state is meant to be
104 * secret, e.g., for NMAC and HMAC support.
107 extern void sha_set(sha_ctx */*ctx*/, const void */*buf*/,
108 unsigned long /*count*/);
110 /* --- @sha_hash@ --- *
112 * Arguments: @sha_ctx *ctx@ = pointer to context block
113 * @const void *buf@ = buffer of data to hash
114 * @size_t sz@ = size of buffer to hash
118 * Use: Hashes a buffer of data. The buffer may be of any size and
122 extern void sha_hash(sha_ctx */*ctx*/, const void */*buf*/, size_t /*sz*/);
124 /* --- @sha_done@ --- *
126 * Arguments: @sha_ctx *ctx@ = pointer to context block
127 * @void *hash@ = pointer to output buffer
131 * Use: Returns the hash of the data read so far.
134 extern void sha_done(sha_ctx */*ctx*/, void */*hash*/);
136 /* --- @sha_state@ --- *
138 * Arguments: @sha_ctx *ctx@ = pointer to context
139 * @void *state@ = pointer to buffer for current state
141 * Returns: Number of bytes written to the hash function so far.
143 * Use: Returns the current state of the hash function such that
144 * it can be passed to @sha_set@.
147 extern unsigned long sha_state(sha_ctx */*ctx*/, void */*state*/);
149 /*----- Generic hash interface --------------------------------------------*/
151 extern const gchash sha;
153 /*----- That's all, folks -------------------------------------------------*/