configure.ac: Replace with a new version.
[u/mdw/catacomb] / sha256.h
CommitLineData
eee16120 1/* -*-c-*-
2 *
5d5a3322 3 * $Id$
eee16120 4 *
5 * Implementation of the SHA-256 hash function
6 *
7 * (c) 2000 Straylight/Edgeware
8 */
9
45c0fd36 10/*----- Licensing notice --------------------------------------------------*
eee16120 11 *
12 * This file is part of Catacomb.
13 *
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.
45c0fd36 18 *
eee16120 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.
45c0fd36 23 *
eee16120 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,
27 * MA 02111-1307, USA.
28 */
29
5d5a3322 30/*----- Notes on the SHA-256 hash function --------------------------------*
eee16120 31 *
32 * SHA-1 (Secure Hash Algorithm) was designed by the NSA, for use with the
33 * Digital Signature Algorithm. This is an evolution with a larger output
34 * size, intended to provide security commensurate with 128-bit AES. At the
35 * time of writing, SHA-256 is very new, and can't be trusted too far.
36 */
37
38#ifndef CATACOMB_SHA256_H
39#define CATACOMB_SHA256_H
5d5a3322 40#define CATACOMB_SHA224_H
eee16120 41
42#ifdef __cplusplus
43 extern "C" {
44#endif
45
46/*----- Header files ------------------------------------------------------*/
47
48#include <mLib/bits.h>
49
50#ifndef CATACOMB_GHASH_H
51# include "ghash.h"
52#endif
53
54/*----- Magic numbers -----------------------------------------------------*/
55
56#define SHA256_BUFSZ 64
57#define SHA256_HASHSZ 32
c850c0da 58#define SHA256_STATESZ 32
eee16120 59
5b69c389 60#define SHA224_BUFSZ 64
61#define SHA224_HASHSZ 28
62#define SHA224_STATESZ 32
63
eee16120 64/*----- Data structures ---------------------------------------------------*/
65
66typedef struct sha256_ctx {
67 uint32 a, b, c, d, e, f, g, h; /* Chaining variables */
68 uint32 nl, nh; /* Byte count so far */
69 unsigned off; /* Offset into buffer */
70 octet buf[SHA256_BUFSZ]; /* Accumulation buffer */
5b69c389 71} sha256_ctx, sha224_ctx;
eee16120 72
73/*----- Functions provided ------------------------------------------------*/
74
5b69c389 75/* --- @sha256_compress@, @sha224_compress@ --- *
eee16120 76 *
77 * Arguments: @sha256_ctx *ctx@ = pointer to context block
78 * @const void *sbuf@ = pointer to buffer of appropriate size
79 *
80 * Returns: ---
81 *
82 * Use: SHA-256 compression function.
83 */
84
85extern void sha256_compress(sha256_ctx */*ctx*/, const void */*sbuf*/);
5b69c389 86#define sha224_compress sha256_compress
eee16120 87
5b69c389 88/* --- @sha256_init@, @sha224_init@ --- *
eee16120 89 *
90 * Arguments: @sha256_ctx *ctx@ = pointer to context block to initialize
91 *
92 * Returns: ---
93 *
94 * Use: Initializes a context block ready for hashing.
95 */
96
97extern void sha256_init(sha256_ctx */*ctx*/);
5b69c389 98extern void sha224_init(sha256_ctx */*ctx*/);
eee16120 99
5b69c389 100/* --- @sha256_set@, @sha224_set@ --- *
eee16120 101 *
102 * Arguments: @sha256_ctx *ctx@ = pointer to context block
103 * @const void *buf@ = pointer to state buffer
104 * @unsigned long count@ = current count of bytes processed
105 *
106 * Returns: ---
107 *
108 * Use: Initializes a context block from a given state. This is
109 * useful in cases where the initial hash state is meant to be
110 * secret, e.g., for NMAC and HMAC support.
111 */
112
113extern void sha256_set(sha256_ctx */*ctx*/, const void */*buf*/,
114 unsigned long /*count*/);
5b69c389 115#define sha224_set sha256_set
eee16120 116
5b69c389 117/* --- @sha256_hash@, @sha224_hash@ --- *
eee16120 118 *
119 * Arguments: @sha256_ctx *ctx@ = pointer to context block
120 * @const void *buf@ = buffer of data to hash
121 * @size_t sz@ = size of buffer to hash
122 *
123 * Returns: ---
124 *
125 * Use: Hashes a buffer of data. The buffer may be of any size and
126 * alignment.
127 */
128
129extern void sha256_hash(sha256_ctx */*ctx*/,
130 const void */*buf*/, size_t /*sz*/);
5b69c389 131#define sha224_hash sha256_hash
eee16120 132
5b69c389 133/* --- @sha256_done@, @sha224_done@ --- *
eee16120 134 *
135 * Arguments: @sha256_ctx *ctx@ = pointer to context block
136 * @void *hash@ = pointer to output buffer
137 *
138 * Returns: ---
139 *
140 * Use: Returns the hash of the data read so far.
141 */
142
143extern void sha256_done(sha256_ctx */*ctx*/, void */*hash*/);
5b69c389 144extern void sha224_done(sha256_ctx */*ctx*/, void */*hash*/);
eee16120 145
5b69c389 146/* --- @sha256_state@, @sha224_state@ --- *
eee16120 147 *
148 * Arguments: @sha256_ctx *ctx@ = pointer to context
149 * @void *state@ = pointer to buffer for current state
150 *
151 * Returns: Number of bytes written to the hash function so far.
152 *
153 * Use: Returns the current state of the hash function such that
154 * it can be passed to @sha256_set@.
155 */
156
157extern unsigned long sha256_state(sha256_ctx */*ctx*/, void */*state*/);
5b69c389 158#define sha224_state sha256_state
eee16120 159
160/*----- Generic hash interface --------------------------------------------*/
161
162extern const gchash sha256;
5b69c389 163extern const gchash sha224;
eee16120 164
165/*----- That's all, folks -------------------------------------------------*/
166
167#ifdef __cplusplus
168 }
169#endif
170
171#endif