3 This file is part of the ARM-Crypto-Lib.
4 Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de)
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.
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.
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/>.
35 void keccak_dump_state(uint64_t a[5][5]){
42 cli_hexdump_rev(&(a[i][j]), 8);
48 void keccak_dump_ctx(keccak_ctx_t* ctx){
49 keccak_dump_state(ctx->a);
50 cli_putstr("\r\nDBG: r: ");
51 cli_hexdump_rev(&(ctx->r), 2);
53 cli_hexdump_rev(&(ctx->c), 2);
55 cli_hexdump(&(ctx->d), 1);
56 cli_putstr("\t bs: ");
57 cli_hexdump(&(ctx->bs), 1);
62 static const uint64_t rc[] = {
63 0x0000000000000001LL, 0x0000000000008082LL,
64 0x800000000000808ALL, 0x8000000080008000LL,
65 0x000000000000808BLL, 0x0000000080000001LL,
66 0x8000000080008081LL, 0x8000000000008009LL,
67 0x000000000000008ALL, 0x0000000000000088LL,
68 0x0000000080008009LL, 0x000000008000000ALL,
69 0x000000008000808BLL, 0x800000000000008BLL,
70 0x8000000000008089LL, 0x8000000000008003LL,
71 0x8000000000008002LL, 0x8000000000000080LL,
72 0x000000000000800ALL, 0x800000008000000ALL,
73 0x8000000080008081LL, 0x8000000000008080LL,
74 0x0000000080000001LL, 0x8000000080008008LL
77 uint64_t rotl64(uint64_t a, uint8_t r){
78 return (a<<r)|(a>>(64-r));
81 static const uint8_t r[5][5] = {
84 { 62, 6, 43, 15, 61 },
85 { 28, 55, 25, 21, 56 },
89 void keccak_round(uint64_t a[5][5], uint8_t rci){
94 b[i][0] = a[0][i] ^ a[1][i] ^ a[2][i] ^ a[3][i] ^ a[4][i];
97 b[i][1] = b[(4+i)%5][0] ^ rotl64(b[(i+1)%5][0], 1);
105 cli_putstr("\r\nAfter theta:");
106 keccak_dump_state(a);
111 b[(2*i+3*j)%5][j] = rotl64(a[j][i], r[i][j]);
115 cli_putstr("\r\n--- after rho & pi ---");
116 keccak_dump_state(a);
121 a[j][i] = b[j][i] ^ ((~(b[j][(i+1)%5]))&(b[j][(i+2)%5]));
125 cli_putstr("\r\nAfter chi:");
126 keccak_dump_state(a);
133 cli_putstr("\r\nAfter iota:");
134 keccak_dump_state(a);
138 void keccak_f1600(uint64_t a[5][5]){
142 cli_putstr("\r\n\r\n--- Round ");
150 void keccak_nextBlock(keccak_ctx_t* ctx, const void* block){
151 memxor(ctx->a, block, ctx->bs);
152 keccak_f1600(ctx->a);
155 void keccak_lastBlock(keccak_ctx_t* ctx, const void* block, uint16_t length_b){
156 while(length_b>=ctx->r){
157 keccak_nextBlock(ctx, block);
158 block = (uint8_t*)block + ctx->bs;
161 uint8_t tmp[ctx->bs];
163 memset(tmp, 0x00, ctx->bs);
164 memcpy(tmp, block, (length_b+7)/8);
167 /* we have some single bits */
169 t = tmp[length_b/8]>>(8-(length_b&7));
170 t |= 0x01<<(length_b&7);
173 tmp[length_b/8] = 0x01;
178 if(length_b/8+1+3<=ctx->bs){
179 memcpy(tmp+length_b/8+1, pad, 3);
181 if(length_b/8+1+2<=ctx->bs){
182 memcpy(tmp+length_b/8+1, pad, 2);
183 keccak_nextBlock(ctx, tmp);
184 memset(tmp, 0x00, ctx->bs);
187 if(length_b/8+1+1<=ctx->bs){
188 memcpy(tmp+length_b/8+1, pad, 1);
189 keccak_nextBlock(ctx, tmp);
190 memset(tmp, 0x00, ctx->bs);
194 keccak_nextBlock(ctx, tmp);
195 memset(tmp, 0x00, ctx->bs);
202 keccak_nextBlock(ctx, tmp);
205 void keccak_ctx2hash(void* dest, uint16_t length_b, keccak_ctx_t* ctx){
206 while(length_b>=ctx->r){
207 memcpy(dest, ctx->a, ctx->bs);
208 dest = (uint8_t*)dest + ctx->bs;
210 keccak_f1600(ctx->a);
212 memcpy(dest, ctx->a, (length_b+7)/8);
215 void keccak224_ctx2hash(void* dest, keccak_ctx_t* ctx){
216 keccak_ctx2hash(dest, 224, ctx);
219 void keccak256_ctx2hash(void* dest, keccak_ctx_t* ctx){
220 keccak_ctx2hash(dest, 256, ctx);
223 void keccak384_ctx2hash(void* dest, keccak_ctx_t* ctx){
224 keccak_ctx2hash(dest, 384, ctx);
227 void keccak512_ctx2hash(void* dest, keccak_ctx_t* ctx){
228 keccak_ctx2hash(dest, 512, ctx);
232 1. SHA3-224: ⌊Keccak[r = 1152, c = 448, d = 28]⌋224
233 2. SHA3-256: ⌊Keccak[r = 1088, c = 512, d = 32]⌋256
234 3. SHA3-384: ⌊Keccak[r = 832, c = 768, d = 48]⌋384
235 4. SHA3-512: ⌊Keccak[r = 576, c = 1024, d = 64]⌋512
237 void keccak_init(uint16_t r, uint16_t c, uint8_t d, keccak_ctx_t* ctx){
238 memset(ctx->a, 0x00, 5*5*8);
242 ctx->bs = (uint8_t)(r/8);
245 void keccak224_init(keccak_ctx_t* ctx){
246 keccak_init(1152, 448, 28, ctx);
249 void keccak256_init(keccak_ctx_t* ctx){
250 keccak_init(1088, 512, 32, ctx);
253 void keccak384_init(keccak_ctx_t* ctx){
254 keccak_init( 832, 768, 48, ctx);
257 void keccak512_init(keccak_ctx_t* ctx){
258 keccak_init( 576, 1024, 64, ctx);