]> git.cryptolib.org Git - avr-crypto-lib.git/blob - keccak/keccak-stub.c
[keccak-asm] removing rotate64 from asm build
[avr-crypto-lib.git] / keccak / keccak-stub.c
1 /* keecak.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2010 Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <stdint.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <avr/pgmspace.h>
24 #include "memxor.h"
25 #include "rotate64.h"
26 #include "keccak.h"
27 #include "stdio.h"
28
29 #ifdef DEBUG
30 #  undef DEBUG
31 #endif
32
33 #define DEBUG 0
34
35 #if DEBUG
36 #include "cli.h"
37
38 void keccak_dump_state(uint64_t a[5][5]){
39         uint8_t i,j;
40         for(i=0; i<5; ++i){
41                 cli_putstr_P(PSTR("\r\n"));
42                 cli_putc('0'+i);
43                 cli_putstr_P(PSTR(": "));
44                 for(j=0; j<5; ++j){
45                         cli_hexdump_rev(&(a[i][j]), 8);
46                         cli_putc(' ');
47                 }
48         }
49 }
50
51 void keccak_dump_ctx(keccak_ctx_t* ctx){
52         keccak_dump_state(ctx->a);
53         cli_putstr_P(PSTR("\r\nDBG: r: "));
54         cli_hexdump_rev(&(ctx->r), 2);
55         cli_putstr_P(PSTR("\t c: "));
56         cli_hexdump_rev(&(ctx->c), 2);
57         cli_putstr_P(PSTR("\t d: "));
58         cli_hexdump(&(ctx->d), 1);
59         cli_putstr_P(PSTR("\t bs: "));
60         cli_hexdump(&(ctx->bs), 1);
61 }
62
63 #endif
64
65
66 const uint8_t keccak_rc_comp[] PROGMEM = {
67                 0x01, 0x92, 0xda, 0x70,
68                 0x9b, 0x21, 0xf1, 0x59,
69                 0x8a, 0x88, 0x39, 0x2a,
70                 0xbb, 0xcb, 0xd9, 0x53,
71                 0x52, 0xc0, 0x1a, 0x6a,
72                 0xf1, 0xd0, 0x21, 0x78,
73 };
74
75 const uint8_t keccak_rotate_codes[5][5] PROGMEM = {
76         { ROT_CODE( 0), ROT_CODE( 1), ROT_CODE(62), ROT_CODE(28), ROT_CODE(27) },
77         { ROT_CODE(36), ROT_CODE(44), ROT_CODE( 6), ROT_CODE(55), ROT_CODE(20) },
78         { ROT_CODE( 3), ROT_CODE(10), ROT_CODE(43), ROT_CODE(25), ROT_CODE(39) },
79         { ROT_CODE(41), ROT_CODE(45), ROT_CODE(15), ROT_CODE(21), ROT_CODE( 8) },
80         { ROT_CODE(18), ROT_CODE( 2), ROT_CODE(61), ROT_CODE(56), ROT_CODE(14) }
81 };
82
83 void keccak_f1600(uint64_t a[5][5]);
84
85 void keccak_nextBlock(keccak_ctx_t* ctx, const void* block){
86         memxor(ctx->a, block, ctx->bs);
87         keccak_f1600(ctx->a);
88 }
89
90 void keccak_lastBlock(keccak_ctx_t* ctx, const void* block, uint16_t length_b){
91         while(length_b>=ctx->r){
92                 keccak_nextBlock(ctx, block);
93                 block = (uint8_t*)block + ctx->bs;
94                 length_b -=  ctx->r;
95         }
96         uint8_t tmp[ctx->bs];
97         uint8_t pad[3];
98         memset(tmp, 0x00, ctx->bs);
99         memcpy(tmp, block, (length_b+7)/8);
100         /* appand 1 */
101         if(length_b & 7){
102                 /* we have some single bits */
103                 uint8_t t;
104                 t = tmp[length_b / 8] >> (8 - (length_b & 7));
105                 t |= 0x01 << (length_b & 7);
106                 tmp[length_b / 8] = t;
107         }else{
108                 tmp[length_b / 8] = 0x01;
109         }
110         pad[0] = ctx->d;
111         pad[1] = ctx->bs;
112         pad[2] = 0x01;
113         if(length_b / 8 + 1 + 3 <= ctx->bs){
114                 memcpy(tmp + length_b / 8 + 1, pad, 3);
115         }else{
116                 if(length_b / 8 + 1 + 2 <= ctx->bs){
117                         memcpy(tmp+length_b/8+1, pad, 2);
118                         keccak_nextBlock(ctx, tmp);
119                         memset(tmp, 0x00, ctx->bs);
120                         tmp[0] = 0x01;
121                 }else{
122                         if(length_b/8+1+1 <= ctx->bs){
123                                 memcpy(tmp + length_b / 8 + 1, pad, 1);
124                                 keccak_nextBlock(ctx, tmp);
125                                 memset(tmp, 0x00, ctx->bs);
126                                 tmp[0] = ctx->bs;
127                                 tmp[1] = 0x01;
128                         }else{
129                                 keccak_nextBlock(ctx, tmp);
130                                 memset(tmp, 0x00, ctx->bs);
131                                 tmp[0] = ctx->d;
132                                 tmp[1] = ctx->bs;
133                                 tmp[2] = 0x01;
134                         }
135                 }
136         }
137         keccak_nextBlock(ctx, tmp);
138 }
139
140 void keccak_ctx2hash(void* dest, uint16_t length_b, keccak_ctx_t* ctx){
141         while(length_b>=ctx->r){
142                 memcpy(dest, ctx->a, ctx->bs);
143                 dest = (uint8_t*)dest + ctx->bs;
144                 length_b -= ctx->r;
145                 keccak_f1600(ctx->a);
146         }
147         memcpy(dest, ctx->a, (length_b+7)/8);
148 }
149
150 void keccak224_ctx2hash(void* dest, keccak_ctx_t* ctx){
151         keccak_ctx2hash(dest, 224, ctx);
152 }
153
154 void keccak256_ctx2hash(void* dest, keccak_ctx_t* ctx){
155         keccak_ctx2hash(dest, 256, ctx);
156 }
157
158 void keccak384_ctx2hash(void* dest, keccak_ctx_t* ctx){
159         keccak_ctx2hash(dest, 384, ctx);
160 }
161
162 void keccak512_ctx2hash(void* dest, keccak_ctx_t* ctx){
163         keccak_ctx2hash(dest, 512, ctx);
164 }
165
166 /*
167   1. SHA3-224: ⌊Keccak[r = 1152, c =  448, d = 28]⌋224
168   2. SHA3-256: ⌊Keccak[r = 1088, c =  512, d = 32]⌋256
169   3. SHA3-384: ⌊Keccak[r =  832, c =  768, d = 48]⌋384
170   4. SHA3-512: ⌊Keccak[r =  576, c = 1024, d = 64]⌋512
171 */
172 void keccak_init(uint16_t r, uint16_t c, uint8_t d, keccak_ctx_t* ctx){
173         memset(ctx->a, 0x00, 5 * 5 * 8);
174         ctx->r = r;
175         ctx->c = c;
176         ctx->d = d;
177         ctx->bs = (uint8_t)(r / 8);
178 }
179
180 void keccak224_init(keccak_ctx_t* ctx){
181         keccak_init(1152, 448, 28, ctx);
182 }
183
184 void keccak256_init(keccak_ctx_t* ctx){
185         keccak_init(1088, 512, 32, ctx);
186 }
187
188 void keccak384_init(keccak_ctx_t* ctx){
189         keccak_init( 832, 768, 48, ctx);
190 }
191
192 void keccak512_init(keccak_ctx_t* ctx){
193         keccak_init( 576, 1024, 64, ctx);
194 }