(inittables): Use toupper rather than
[platform/upstream/coreutils.git] / lib / sha512.h
1 /* Declarations of functions and data types used for SHA512 and SHA384 sum
2    library functions.
3    Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify it
6    under the terms of the GNU General Public License as published by the
7    Free Software Foundation; either version 2, or (at your option) any
8    later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #ifndef SHA512_H
20 # define SHA512_H 1
21
22 # include <stdio.h>
23 # include <stdint.h>
24
25 /* Structure to save state of computation between the single steps.  */
26 struct sha512_ctx
27 {
28   uint64_t state[8];
29
30   uint64_t total[2];
31   uint64_t buflen;
32   uint64_t buffer[32];
33 };
34
35
36 /* Initialize structure containing state of computation. */
37 extern void sha512_init_ctx (struct sha512_ctx *ctx);
38 extern void sha384_init_ctx (struct sha512_ctx *ctx);
39
40 /* Starting with the result of former calls of this function (or the
41    initialization function update the context for the next LEN bytes
42    starting at BUFFER.
43    It is necessary that LEN is a multiple of 128!!! */
44 extern void sha512_process_block (const void *buffer, size_t len,
45                                   struct sha512_ctx *ctx);
46
47 /* Starting with the result of former calls of this function (or the
48    initialization function update the context for the next LEN bytes
49    starting at BUFFER.
50    It is NOT required that LEN is a multiple of 128.  */
51 extern void sha512_process_bytes (const void *buffer, size_t len,
52                                   struct sha512_ctx *ctx);
53
54 /* Process the remaining bytes in the buffer and put result from CTX
55    in first 64 (48) bytes following RESBUF.  The result is always in little
56    endian byte order, so that a byte-wise output yields to the wanted
57    ASCII representation of the message digest.
58
59    IMPORTANT: On some systems it is required that RESBUF be correctly
60    aligned for a 64 bits value.  */
61 extern void *sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf);
62 extern void *sha384_finish_ctx (struct sha512_ctx *ctx, void *resbuf);
63
64
65 /* Put result from CTX in first 64 (48) bytes following RESBUF.  The result is
66    always in little endian byte order, so that a byte-wise output yields
67    to the wanted ASCII representation of the message digest.
68
69    IMPORTANT: On some systems it is required that RESBUF is correctly
70    aligned for a 32 bits value.  */
71 extern void *sha512_read_ctx (const struct sha512_ctx *ctx, void *resbuf);
72 extern void *sha384_read_ctx (const struct sha512_ctx *ctx, void *resbuf);
73
74
75 /* Compute SHA512 (SHA384) message digest for bytes read from STREAM.  The
76    resulting message digest number will be written into the 64 (48) bytes
77    beginning at RESBLOCK.  */
78 extern int sha512_stream (FILE *stream, void *resblock);
79 extern int sha384_stream (FILE *stream, void *resblock);
80
81 /* Compute SHA512 (SHA384) message digest for LEN bytes beginning at BUFFER.  The
82    result is always in little endian byte order, so that a byte-wise
83    output yields to the wanted ASCII representation of the message
84    digest.  */
85 extern void *sha512_buffer (const char *buffer, size_t len, void *resblock);
86 extern void *sha384_buffer (const char *buffer, size_t len, void *resblock);
87
88 # define rol64(x,n) ( ((x) << (n)) | ((x) >> (64-(n))) )
89
90 #endif