Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / extlibs / tinydtls / sha2 / sha2.h
1 /*
2  * FILE:        sha2.h
3  * AUTHOR:      Aaron D. Gifford - http://www.aarongifford.com/
4  * 
5  * Copyright (c) 2000-2001, Aaron D. Gifford
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the copyright holder nor the names of contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  * 
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * $Id: sha2.h,v 1.1 2001/11/08 00:02:01 adg Exp adg $
33  */
34
35 #ifndef __SHA2_H__
36 #define __SHA2_H__
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42
43 /*
44  * Import u_intXX_t size_t type definitions from system headers.  You
45  * may need to change this, or define these things yourself in this
46  * file.
47  */
48 #include <sys/types.h>
49
50 #ifdef SHA2_USE_INTTYPES_H
51
52 #include <inttypes.h>
53
54 #endif /* SHA2_USE_INTTYPES_H */
55
56
57 /*** SHA-256/384/512 Various Length Definitions ***********************/
58 #define DTLS_SHA256_BLOCK_LENGTH                64
59 #define DTLS_SHA256_DIGEST_LENGTH               32
60 #define DTLS_SHA256_DIGEST_STRING_LENGTH        (DTLS_SHA256_DIGEST_LENGTH * 2 + 1)
61 #define DTLS_SHA384_BLOCK_LENGTH                128
62 #define DTLS_SHA384_DIGEST_LENGTH               48
63 #define DTLS_SHA384_DIGEST_STRING_LENGTH        (DTLS_SHA384_DIGEST_LENGTH * 2 + 1)
64 #define DTLS_SHA512_BLOCK_LENGTH                128
65 #define DTLS_SHA512_DIGEST_LENGTH               64
66 #define DTLS_SHA512_DIGEST_STRING_LENGTH        (DTLS_SHA512_DIGEST_LENGTH * 2 + 1)
67
68
69 /*** SHA-256/384/512 Context Structures *******************************/
70 /* NOTE: If your architecture does not define either u_intXX_t types or
71  * uintXX_t (from inttypes.h), you may need to define things by hand
72  * for your system:
73  */
74 #if 0
75 typedef unsigned char u_int8_t;         /* 1-byte  (8-bits)  */
76 typedef unsigned int u_int32_t;         /* 4-bytes (32-bits) */
77 typedef unsigned long long u_int64_t;   /* 8-bytes (64-bits) */
78 #endif
79 /*
80  * Most BSD systems already define u_intXX_t types, as does Linux.
81  * Some systems, however, like Compaq's Tru64 Unix instead can use
82  * uintXX_t types defined by very recent ANSI C standards and included
83  * in the file:
84  *
85  *   #include <inttypes.h>
86  *
87  * If you choose to use <inttypes.h> then please define: 
88  *
89  *   #define SHA2_USE_INTTYPES_H
90  *
91  * Or on the command line during compile:
92  *
93  *   cc -DSHA2_USE_INTTYPES_H ...
94  */
95 #ifdef SHA2_USE_INTTYPES_H
96
97 typedef struct _dtls_sha256_ctx {
98         uint32_t        state[8];
99         uint64_t        bitcount;
100         uint8_t buffer[DTLS_SHA256_BLOCK_LENGTH];
101 } dtls_sha256_ctx;
102 typedef struct _dtls_sha512_ctx {
103         uint64_t        state[8];
104         uint64_t        bitcount[2];
105         uint8_t buffer[DTLS_SHA512_BLOCK_LENGTH];
106 } dtls_sha512_ctx;
107
108 #else /* SHA2_USE_INTTYPES_H */
109
110 typedef struct _dtls_sha256_ctx {
111         u_int32_t       state[8];
112         u_int64_t       bitcount;
113         u_int8_t        buffer[DTLS_SHA256_BLOCK_LENGTH];
114 } dtls_sha256_ctx;
115 typedef struct _dtls_sha512_ctx {
116         u_int64_t       state[8];
117         u_int64_t       bitcount[2];
118         u_int8_t        buffer[DTLS_SHA512_BLOCK_LENGTH];
119 } dtls_sha512_ctx;
120
121 #endif /* SHA2_USE_INTTYPES_H */
122
123 typedef dtls_sha512_ctx dtls_sha384_ctx;
124
125
126 /*** SHA-256/384/512 Function Prototypes ******************************/
127 #ifndef NOPROTO
128 #ifdef SHA2_USE_INTTYPES_H
129
130 #ifdef WITH_SHA256
131 void dtls_sha256_init(dtls_sha256_ctx *);
132 void dtls_sha256_update(dtls_sha256_ctx*, const uint8_t*, size_t);
133 void dtls_sha256_final(uint8_t[DTLS_SHA256_DIGEST_LENGTH], dtls_sha256_ctx*);
134 char* dtls_sha256_end(dtls_sha256_ctx*, char[DTLS_SHA256_DIGEST_STRING_LENGTH]);
135 char* dtls_sha256_data(const uint8_t*, size_t, char[DTLS_SHA256_DIGEST_STRING_LENGTH]);
136 #endif
137
138 #ifdef WITH_SHA384
139 void dtls_sha384_init(dtls_sha384_ctx*);
140 void dtls_sha384_update(dtls_sha384_ctx*, const uint8_t*, size_t);
141 void dtls_sha384_final(uint8_t[DTLS_SHA384_DIGEST_LENGTH], SHA384_CTX*);
142 char* dtls_sha384_end(dtls_sha384_ctx*, char[DTLS_SHA384_DIGEST_STRING_LENGTH]);
143 char* dtls_sha384_data(const uint8_t*, size_t, char[DTLS_SHA384_DIGEST_STRING_LENGTH]);
144 #endif
145
146 #ifdef WITH_SHA512
147 void dtls_sha512_init(dtls_sha512_ctx*);
148 void dtls_sha512_update(dtls_sha512_ctx*, const uint8_t*, size_t);
149 void dtls_sha512_final(uint8_t[DTLS_SHA512_DIGEST_LENGTH], dtls_sha512_ctx*);
150 char* dtls_sha512_end(dtls_sha512_ctx*, char[DTLS_SHA512_DIGEST_STRING_LENGTH]);
151 char* dtls_sha512_data(const uint8_t*, size_t, char[DTLS_SHA512_DIGEST_STRING_LENGTH]);
152 #endif
153
154 #else /* SHA2_USE_INTTYPES_H */
155
156 #ifdef WITH_SHA256
157 void dtls_sha256_init(dtls_sha256_ctx *);
158 void dtls_sha256_update(dtls_sha256_ctx*, const u_int8_t*, size_t);
159 void dtls_sha256_final(u_int8_t[DTLS_SHA256_DIGEST_LENGTH], dtls_sha256_ctx*);
160 char* dtls_sha256_end(dtls_sha256_ctx*, char[DTLS_SHA256_DIGEST_STRING_LENGTH]);
161 char* dtls_sha256_data(const u_int8_t*, size_t, char[DTLS_SHA256_DIGEST_STRING_LENGTH]);
162 #endif
163
164 #ifdef WITH_SHA384
165 void dtls_sha384_init(dtls_sha384_ctx*);
166 void dtls_sha384_update(dtls_sha384_ctx*, const u_int8_t*, size_t);
167 void dtls_sha384_final(u_int8_t[DTLS_SHA384_DIGEST_LENGTH], dtls_sha384_ctx*);
168 char* dtls_sha384_end(dtls_sha384_ctx*, char[DTLS_SHA384_DIGEST_STRING_LENGTH]);
169 char* dtls_sha384_data(const u_int8_t*, size_t, char[DTLS_SHA384_DIGEST_STRING_LENGTH]);
170 #endif
171
172 #ifdef WITH_SHA512
173 void dtls_sha512_init(dtls_sha512_ctx*);
174 void dtls_sha512_update(dtls_sha512_ctx*, const u_int8_t*, size_t);
175 void dtls_sha512_final(u_int8_t[DTLS_SHA512_DIGEST_LENGTH], dtls_sha512_ctx*);
176 char* dtls_sha512_end(dtls_sha512_ctx*, char[DTLS_SHA512_DIGEST_STRING_LENGTH]);
177 char* dtls_sha512_data(const u_int8_t*, size_t, char[DTLS_SHA512_DIGEST_STRING_LENGTH]);
178 #endif
179
180 #endif /* SHA2_USE_INTTYPES_H */
181
182 #else /* NOPROTO */
183
184 #ifdef WITH_SHA256
185 void dtls_sha256_init();
186 void dtls_sha256_update();
187 void dtls_sha256_final();
188 char* dtls_sha256_end();
189 char* dtls_sha256_data();
190 #endif
191
192 #ifdef WITH_SHA384
193 void dtls_sha384_init();
194 void dtls_sha384_update();
195 void dtls_sha384_final();
196 char* dtls_sha384_end();
197 char* dtls_sha384_data();
198 #endif
199
200 #ifdef WITH_SHA512
201 void dtls_sha512_init();
202 void dtls_sha512_update();
203 void dtls_sha512_final();
204 char* dtls_sha512_end();
205 char* dtls_sha512_data();
206 #endif
207
208 #endif /* NOPROTO */
209
210 #ifdef  __cplusplus
211 }
212 #endif /* __cplusplus */
213
214 #endif /* __SHA2_H__ */
215