a585727ef6b1a1524e352620dad943e550751d6d
[platform/upstream/nettle.git] / sha1.c
1 /* sha1.c
2
3    The sha1 hash function.
4    Defined by http://www.itl.nist.gov/fipspubs/fip180-1.htm.
5
6    Copyright (C) 2001, 2013 Niels Möller
7
8    This file is part of GNU Nettle.
9
10    GNU Nettle is free software: you can redistribute it and/or
11    modify it under the terms of either:
12
13      * the GNU Lesser General Public License as published by the Free
14        Software Foundation; either version 3 of the License, or (at your
15        option) any later version.
16
17    or
18
19      * the GNU General Public License as published by the Free
20        Software Foundation; either version 2 of the License, or (at your
21        option) any later version.
22
23    or both in parallel, as here.
24
25    GNU Nettle is distributed in the hope that it will be useful,
26    but WITHOUT ANY WARRANTY; without even the implied warranty of
27    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
28    General Public License for more details.
29
30    You should have received copies of the GNU General Public License and
31    the GNU Lesser General Public License along with this program.  If
32    not, see http://www.gnu.org/licenses/.
33 */
34
35 #if HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <assert.h>
40 #include <stdlib.h>
41 #include <string.h>
42
43 #include "sha1.h"
44
45 #include "macros.h"
46 #include "nettle-write.h"
47
48 /* Initialize the SHA values */
49 void
50 sha1_init(struct sha1_ctx *ctx)
51 {
52   /* FIXME: Put the buffer last in the struct, and arrange so that we
53      can initialize with a single memcpy. */
54   static const uint32_t iv[_SHA1_DIGEST_LENGTH] = 
55     {
56       /* SHA initial values, first 4 identical to md5's. */
57       0x67452301L,
58       0xEFCDAB89L,
59       0x98BADCFEL,
60       0x10325476L,
61       0xC3D2E1F0L,
62     };
63
64   memcpy(ctx->state, iv, sizeof(ctx->state));
65   ctx->count = 0;
66   
67   /* Initialize buffer */
68   ctx->index = 0;
69 }
70
71 #define COMPRESS(ctx, data) (_nettle_sha1_compress((ctx)->state, data))
72
73 void
74 sha1_update(struct sha1_ctx *ctx,
75             size_t length, const uint8_t *data)
76 {
77   MD_UPDATE (ctx, length, data, COMPRESS, ctx->count++);
78 }
79           
80 void
81 sha1_digest(struct sha1_ctx *ctx,
82             size_t length,
83             uint8_t *digest)
84 {
85   uint64_t bit_count;
86
87   assert(length <= SHA1_DIGEST_SIZE);
88
89   MD_PAD(ctx, 8, COMPRESS);
90
91   /* There are 512 = 2^9 bits in one block */
92   bit_count = (ctx->count << 9) | (ctx->index << 3);
93
94   /* append the 64 bit count */
95   WRITE_UINT64(ctx->block + (SHA1_BLOCK_SIZE - 8), bit_count);
96   _nettle_sha1_compress(ctx->state, ctx->block);
97
98   _nettle_write_be32(length, digest, ctx->state);
99   sha1_init(ctx);
100 }