]> git.cryptolib.org Git - avr-crypto-lib.git/blob - bmw/bmw_small.c
fixing blake & adding testvectors
[avr-crypto-lib.git] / bmw / bmw_small.c
1 /* bmw_small.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2009  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  * \file    bmw_small.c
21  * \author  Daniel Otte
22  * \email   daniel.otte@rub.de
23  * \date    2009-04-27
24  * \license GPLv3 or later
25  *
26  */
27
28 #include <stdint.h>
29 #include <string.h>
30 #include <avr/pgmspace.h>
31 #include "bmw_small.h"
32
33
34 #define SHL32(a,n) ((a)<<(n))
35 #define SHR32(a,n) ((a)>>(n))
36 #define ROTL32(a,n) (((a)<<(n))|((a)>>(32-(n))))
37 #define ROTR32(a,n) (((a)>>(n))|((a)<<(32-(n))))
38
39
40 #define TWEAK   1
41 #if TWEAK
42 #  define BUG24   0
43 #else
44 #  define BUG24   1
45 #endif
46
47 #define F0_HACK 2
48
49 #define DEBUG 0
50
51 #ifndef F0_HACK
52 #  define F0_HACK 0
53 #endif
54
55 #if DEBUG
56  #include "cli.h"
57
58  void ctx_dump(const bmw_small_ctx_t* ctx){
59         uint8_t i;
60         cli_putstr_P(PSTR("\r\n==== ctx dump ===="));
61         for(i=0; i<16;++i){
62                 cli_putstr_P(PSTR("\r\n h["));
63                 cli_hexdump(&i, 1);
64                 cli_putstr_P(PSTR("] = "));
65                 cli_hexdump_rev(&(ctx->h[i]), 4);
66         }
67         cli_putstr_P(PSTR("\r\n counter = "));
68         cli_hexdump(&(ctx->counter), 4);
69  }
70
71  void dump_x(const uint32_t* q, uint8_t elements, char x){
72         uint8_t i;
73         cli_putstr_P(PSTR("\r\n==== "));
74         cli_putc(x);
75         cli_putstr_P(PSTR(" dump ===="));
76         for(i=0; i<elements;++i){
77                 cli_putstr_P(PSTR("\r\n "));
78                 cli_putc(x);
79                 cli_putstr_P(PSTR("["));
80                 cli_hexdump(&i, 1);
81                 cli_putstr_P(PSTR("] = "));
82                 cli_hexdump_rev(&(q[i]), 4);
83         }
84  }
85 #else
86  #define ctx_dump(x)
87  #define dump_x(a,b,c)
88 #endif
89
90 static
91 uint32_t bmw_small_s0(uint32_t x){
92         uint32_t r;
93         r =   SHR32(x, 1)
94                 ^ SHL32(x, 3)
95                 ^ ROTL32(x, 4)
96                 ^ ROTR32(x, 13);
97         return r;
98 }
99
100 static
101 uint32_t bmw_small_s1(uint32_t x){
102         uint32_t r;
103         r =   SHR32(x, 1)
104                 ^ SHL32(x, 2)
105                 ^ ROTL32(x, 8)
106                 ^ ROTR32(x, 9);
107         return r;
108 }
109
110 static
111 uint32_t bmw_small_s2(uint32_t x){
112         uint32_t r;
113         r =   SHR32(x, 2)
114                 ^ SHL32(x, 1)
115                 ^ ROTL32(x, 12)
116                 ^ ROTR32(x, 7);
117         return r;
118 }
119
120 static
121 uint32_t bmw_small_s3(uint32_t x){
122         uint32_t r;
123         r =   SHR32(x, 2)
124                 ^ SHL32(x, 2)
125                 ^ ROTL32(x, 15)
126                 ^ ROTR32(x, 3);
127         return r;
128 }
129
130 static
131 uint32_t bmw_small_s4(uint32_t x){
132         uint32_t r;
133         r =   SHR32(x, 1)
134                 ^ x;
135         return r;
136 }
137
138 static
139 uint32_t bmw_small_s5(uint32_t x){
140         uint32_t r;
141         r =   SHR32(x, 2)
142                 ^ x;
143         return r;
144 }
145
146 static
147 uint32_t bmw_small_r1(uint32_t x){
148         uint32_t r;
149         r =   ROTL32(x, 3);
150         return r;
151 }
152
153 static
154 uint32_t bmw_small_r2(uint32_t x){
155         uint32_t r;
156         r =   ROTL32(x, 7);
157         return r;
158 }
159
160 static
161 uint32_t bmw_small_r3(uint32_t x){
162         uint32_t r;
163         r =   ROTL32(x, 13);
164         return r;
165 }
166
167 static
168 uint32_t bmw_small_r4(uint32_t x){
169         uint32_t r;
170         r =   ROTL32(x, 16);
171         return r;
172 }
173
174 static
175 uint32_t bmw_small_r5(uint32_t x){
176         uint32_t r;
177         r =   ROTR32(x, 13);
178         return r;
179 }
180
181 static
182 uint32_t bmw_small_r6(uint32_t x){
183         uint32_t r;
184         r =   ROTR32(x, 9);
185         return r;
186 }
187
188 static
189 uint32_t bmw_small_r7(uint32_t x){
190         uint32_t r;
191         r =   ROTR32(x, 5);
192         return r;
193 }
194 /*
195 #define K 0x05555555L
196 static
197 uint32_t k_lut[] PROGMEM = {
198         16L*K, 17L*K, 18L*K, 19L*K, 20L*K, 21L*K, 22L*K, 23L*K,
199         24L*K, 25L*K, 26L*K, 27L*K, 28L*K, 29L*K, 30L*K, 31L*K
200 };
201 */
202 /* same as above but precomputed to avoid compiler warnings */
203
204 static
205 uint32_t k_lut[] PROGMEM = {
206         0x55555550L, 0x5aaaaaa5L, 0x5ffffffaL,
207         0x6555554fL, 0x6aaaaaa4L, 0x6ffffff9L,
208         0x7555554eL, 0x7aaaaaa3L, 0x7ffffff8L,
209         0x8555554dL, 0x8aaaaaa2L, 0x8ffffff7L,
210         0x9555554cL, 0x9aaaaaa1L, 0x9ffffff6L,
211         0xa555554bL };
212
213 static
214 uint32_t bmw_small_expand1(uint8_t j, const uint32_t* q, const void* m, const void* h){
215         uint32_t(*s[])(uint32_t) = {bmw_small_s1, bmw_small_s2, bmw_small_s3, bmw_small_s0};
216         uint32_t r=0;
217         uint8_t i;
218         /* r = 0x05555555*(j+16); */
219         for(i=0; i<16; ++i){
220                 r += s[i%4](q[j+i]);
221         }
222 #if TWEAK
223         r += (   ROTL32(((uint32_t*)m)[j&0xf],      ((j+0)&0xf)+1  )
224                + ROTL32(((uint32_t*)m)[(j+3)&0xf],  ((j+3)&0xf)+1  )
225                - ROTL32(((uint32_t*)m)[(j+10)&0xf], ((j+10)&0xf)+1 )
226                + pgm_read_dword(k_lut+j)
227              ) ^ ((uint32_t*)h)[(j+7)&0xf];
228 #else
229         r += pgm_read_dword(k_lut+j);
230         r += ((uint32_t*)m)[j&0xf];
231         r += ((uint32_t*)m)[(j+3)&0xf];
232         r -= ((uint32_t*)m)[(j+10)&0xf];
233 #endif
234         return r;
235 }
236
237 static
238 uint32_t bmw_small_expand2(uint8_t j, const uint32_t* q, const void* m, const void* h){
239         uint32_t(*rf[])(uint32_t) = {bmw_small_r1, bmw_small_r2, bmw_small_r3,
240                                      bmw_small_r4, bmw_small_r5, bmw_small_r6,
241                                                              bmw_small_r7};
242         uint32_t r=0;
243         uint8_t i;
244         for(i=0; i<14; i+=2){
245                 r += q[j+i];
246         }
247         for(i=0; i<14; i+=2){
248                 r += rf[i/2](q[j+i+1]);
249         }
250 #if TWEAK
251         r += bmw_small_s4(q[j+14]);
252         r += bmw_small_s5(q[j+15]);
253 #else
254         r += bmw_small_s5(q[j+14]);
255         r += bmw_small_s4(q[j+15]);
256 #endif
257 #if TWEAK
258         r += (   ROTL32(((uint32_t*)m)[j&0xf],      ((j+0)&0xf)+1  )
259                + ROTL32(((uint32_t*)m)[(j+3)&0xf],  ((j+3)&0xf)+1  )
260                - ROTL32(((uint32_t*)m)[(j+10)&0xf], ((j+10)&0xf)+1 )
261                + pgm_read_dword(k_lut+j)
262              ) ^ ((uint32_t*)h)[(j+7)&0xf];
263 #else
264         r += pgm_read_dword(k_lut+j);
265         r += ((uint32_t*)m)[j&0xf];
266         r += ((uint32_t*)m)[(j+3)&0xf];
267         r -= ((uint32_t*)m)[(j+10)&0xf];
268 #endif
269         return r;
270 }
271
272 #if F0_HACK==2
273 /* to understand this implementation take a look at f0-opt-table.txt */
274 static uint16_t hack_table[5] PROGMEM = { 0x0311, 0xDDB3, 0x2A79, 0x07AA, 0x51C2 };
275 static uint8_t  offset_table[5] PROGMEM = { 4+16, 6+16, 9+16, 12+16, 13+16 };
276
277 static
278 void bmw_small_f0(uint32_t* q, uint32_t* h, const void* m){
279         uint16_t hack_reg;
280         uint8_t c,i,j;
281         uint32_t(*s[])(uint32_t)={ bmw_small_s0, bmw_small_s1, bmw_small_s2,
282                                    bmw_small_s3, bmw_small_s4 };
283         for(i=0; i<16; ++i){
284                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
285         }
286         dump_x(h, 16, 'T');
287         memset(q, 0, 4*16);
288         c=4;
289         do{
290                 i=15;
291                 j=pgm_read_byte(offset_table+c);
292                 hack_reg=pgm_read_word(&(hack_table[c]));
293                 do{
294                         if(hack_reg&1){
295                                 q[i]-= h[j&15];
296                         }else{
297                                 q[i]+= h[j&15];
298                         }
299                         --j;
300                         hack_reg>>= 1;
301                 }while(i--!=0);
302         }while(c--!=0);
303         dump_x(q, 16, 'W');
304         for(i=0; i<16; ++i){
305                 q[i] = s[i%5](q[i]);
306         }
307 #if TWEAK
308         for(i=0; i<16; ++i){
309                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
310         }
311         for(i=0; i<16; ++i){
312                 q[i] += h[(i+1)&0xf];
313         }
314 #endif
315 }
316 #endif /* F0_HACK==2*/
317
318 #if F0_HACK==1
319 static
320 uint8_t f0_lut[] PROGMEM = {
321          5<<1, ( 7<<1)+1, (10<<1)+0, (13<<1)+0, (14<<1)+0,
322          6<<1, ( 8<<1)+1, (11<<1)+0, (14<<1)+0, (15<<1)+1,
323          0<<1, ( 7<<1)+0, ( 9<<1)+0, (12<<1)+1, (15<<1)+0,
324          0<<1, ( 1<<1)+1, ( 8<<1)+0, (10<<1)+1, (13<<1)+0,
325          1<<1, ( 2<<1)+0, ( 9<<1)+0, (11<<1)+1, (14<<1)+1,
326          3<<1, ( 2<<1)+1, (10<<1)+0, (12<<1)+1, (15<<1)+0,
327          4<<1, ( 0<<1)+1, ( 3<<1)+1, (11<<1)+1, (13<<1)+0,
328          1<<1, ( 4<<1)+1, ( 5<<1)+1, (12<<1)+1, (14<<1)+1,
329          2<<1, ( 5<<1)+1, ( 6<<1)+1, (13<<1)+0, (15<<1)+1,
330          0<<1, ( 3<<1)+1, ( 6<<1)+0, ( 7<<1)+1, (14<<1)+0,
331          8<<1, ( 1<<1)+1, ( 4<<1)+1, ( 7<<1)+1, (15<<1)+0,
332          8<<1, ( 0<<1)+1, ( 2<<1)+1, ( 5<<1)+1, ( 9<<1)+0,
333          1<<1, ( 3<<1)+0, ( 6<<1)+1, ( 9<<1)+1, (10<<1)+0,
334          2<<1, ( 4<<1)+0, ( 7<<1)+0, (10<<1)+0, (11<<1)+0,
335          3<<1, ( 5<<1)+1, ( 8<<1)+0, (11<<1)+1, (12<<1)+1,
336         12<<1, ( 4<<1)+1, ( 6<<1)+1, ( 9<<1)+1, (13<<1)+0
337 };
338
339 static
340 void bmw_small_f0(uint32_t* q, uint32_t* h, const void* m){
341         uint8_t i,j=-1,v,sign,l=0;
342         uint32_t(*s[])(uint32_t)={ bmw_small_s0, bmw_small_s1, bmw_small_s2,
343                                    bmw_small_s3, bmw_small_s4 };
344         for(i=0; i<16; ++i){
345                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
346         }
347         dump_x(h, 16, 'T');
348         // memset(q, 0, 4*16);
349         for(i=0; i<5*16; ++i){
350                 v = pgm_read_byte(f0_lut+i);
351                 sign = v&1;
352                 v >>=1;
353                 if(i==l){
354                         j++;
355                         l+=5;
356                         q[j] = h[v];
357                         continue;
358                 }
359                 if(sign){
360                         q[j] -= h[v];
361                 }else{
362                         q[j] += h[v];
363                 }
364         }
365         dump_x(q, 16, 'W');
366         for(i=0; i<16; ++i){
367                 q[i] = s[i%5](q[i]);
368         }
369 #if TWEAK
370         for(i=0; i<16; ++i){
371                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
372         }
373         for(i=0; i<16; ++i){
374                 q[i] += h[(i+1)&0xf];
375         }
376 #endif /* TWEAK */
377 }
378 #endif /* F0_HACK==1 */
379
380 #if F0_HACK==0
381 static
382 void bmw_small_f0(uint32_t* q, uint32_t* h, const void* m){
383         uint8_t i;
384         uint32_t(*s[])(uint32_t)={ bmw_small_s0, bmw_small_s1, bmw_small_s2,
385                                    bmw_small_s3, bmw_small_s4 };
386         for(i=0; i<16; ++i){
387                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
388         }
389         dump_x(h, 16, 'T');
390         q[ 0] = (h[ 5] - h[ 7] + h[10] + h[13] + h[14]);
391         q[ 1] = (h[ 6] - h[ 8] + h[11] + h[14] - h[15]);
392         q[ 2] = (h[ 0] + h[ 7] + h[ 9] - h[12] + h[15]);
393         q[ 3] = (h[ 0] - h[ 1] + h[ 8] - h[10] + h[13]);
394         q[ 4] = (h[ 1] + h[ 2] + h[ 9] - h[11] - h[14]);
395         q[ 5] = (h[ 3] - h[ 2] + h[10] - h[12] + h[15]);
396         q[ 6] = (h[ 4] - h[ 0] - h[ 3] - h[11] + h[13]);
397         q[ 7] = (h[ 1] - h[ 4] - h[ 5] - h[12] - h[14]);
398         q[ 8] = (h[ 2] - h[ 5] - h[ 6] + h[13] - h[15]);
399         q[ 9] = (h[ 0] - h[ 3] + h[ 6] - h[ 7] + h[14]);
400         q[10] = (h[ 8] - h[ 1] - h[ 4] - h[ 7] + h[15]);
401         q[11] = (h[ 8] - h[ 0] - h[ 2] - h[ 5] + h[ 9]);
402         q[12] = (h[ 1] + h[ 3] - h[ 6] - h[ 9] + h[10]);
403         q[13] = (h[ 2] + h[ 4] + h[ 7] + h[10] + h[11]);
404         q[14] = (h[ 3] - h[ 5] + h[ 8] - h[11] - h[12]);
405         q[15] = (h[12] - h[ 4] - h[ 6] - h[ 9] + h[13]);
406         dump_x(q, 16, 'W');
407         for(i=0; i<16; ++i){
408                 q[i] = s[i%5](q[i]);
409         }
410 #if TWEAK
411         for(i=0; i<16; ++i){
412                 ((uint32_t*)h)[i] ^= ((uint32_t*)m)[i];
413         }
414         for(i=0; i<16; ++i){
415                 q[i] += h[(i+1)&0xf];
416         }
417 #endif /* TWEAK */
418 }
419 #endif /* F0_HACK==0 */
420
421 static
422 void bmw_small_f1(uint32_t* q, const void* m, const void* h){
423         uint8_t i;
424         q[16] = bmw_small_expand1(0, q, m, h);
425         q[17] = bmw_small_expand1(1, q, m, h);
426         for(i=2; i<16; ++i){
427                 q[16+i] = bmw_small_expand2(i, q, m, h);
428         }
429 }
430
431 static
432 void bmw_small_f2(uint32_t* h, const uint32_t* q, const void* m){
433         uint32_t xl=0, xh;
434         uint8_t i;
435         for(i=16;i<24;++i){
436                 xl ^= q[i];
437         }
438         xh = xl;
439         for(i=24;i<32;++i){
440                 xh ^= q[i];
441         }
442 #if DEBUG
443         cli_putstr_P(PSTR("\r\n XL = "));
444         cli_hexdump_rev(&xl, 4);
445         cli_putstr_P(PSTR("\r\n XH = "));
446         cli_hexdump_rev(&xh, 4);
447 #endif
448         memcpy(h, m, 16*4);
449         h[0] ^= SHL32(xh, 5) ^ SHR32(q[16], 5);
450         h[1] ^= SHR32(xh, 7) ^ SHL32(q[17], 8);
451         h[2] ^= SHR32(xh, 5) ^ SHL32(q[18], 5);
452         h[3] ^= SHR32(xh, 1) ^ SHL32(q[19], 5);
453         h[4] ^= SHR32(xh, 3) ^ q[20];
454         h[5] ^= SHL32(xh, 6) ^ SHR32(q[21], 6);
455         h[6] ^= SHR32(xh, 4) ^ SHL32(q[22], 6);
456         h[7] ^= SHR32(xh,11) ^ SHL32(q[23], 2);
457         for(i=0; i<8; ++i){
458                 h[i] += xl ^ q[24+i] ^ q[i];
459         }
460         for(i=0; i<8; ++i){
461                 h[8+i] ^= xh ^ q[24+i];
462                 h[8+i] += ROTL32(h[(4+i)%8],i+9);
463         }
464         h[ 8] += SHL32(xl, 8) ^ q[23] ^ q[ 8];
465         h[ 9] += SHR32(xl, 6) ^ q[16] ^ q[ 9];
466         h[10] += SHL32(xl, 6) ^ q[17] ^ q[10];
467         h[11] += SHL32(xl, 4) ^ q[18] ^ q[11];
468         h[12] += SHR32(xl, 3) ^ q[19] ^ q[12];
469         h[13] += SHR32(xl, 4) ^ q[20] ^ q[13];
470         h[14] += SHR32(xl, 7) ^ q[21] ^ q[14];
471         h[15] += SHR32(xl, 2) ^ q[22] ^ q[15];
472 }
473
474 void bmw_small_nextBlock(bmw_small_ctx_t* ctx, const void* block){
475         uint32_t q[32];
476         dump_x(block, 16, 'M');
477         bmw_small_f0(q, ctx->h, block);
478         dump_x(q, 16, 'Q');
479         bmw_small_f1(q, block, ctx->h);
480         dump_x(q, 32, 'Q');
481         bmw_small_f2(ctx->h, q, block);
482         ctx->counter += 1;
483         ctx_dump(ctx);
484 }
485
486 void bmw_small_lastBlock(bmw_small_ctx_t* ctx, const void* block, uint16_t length_b){
487         uint8_t buffer[64];
488         while(length_b >= BMW_SMALL_BLOCKSIZE){
489                 bmw_small_nextBlock(ctx, block);
490                 length_b -= BMW_SMALL_BLOCKSIZE;
491                 block = (uint8_t*)block + BMW_SMALL_BLOCKSIZE_B;
492         }
493         memset(buffer, 0, 64);
494         memcpy(buffer, block, (length_b+7)/8);
495         buffer[length_b>>3] |= 0x80 >> (length_b&0x07);
496         if(length_b+1>64*8-64){
497                 bmw_small_nextBlock(ctx, buffer);
498                 memset(buffer, 0, 64-8);
499                 ctx->counter -= 1;
500         }
501         *((uint64_t*)&(buffer[64-8])) = (uint64_t)(ctx->counter*512LL)+(uint64_t)length_b;
502         bmw_small_nextBlock(ctx, buffer);
503 #if TWEAK
504         uint8_t i;
505         uint32_t q[32];
506         memset(buffer, 0xaa, 64);
507         for(i=0; i<16;++i){
508                 buffer[i*4] = i+0xa0;
509         }
510 //      dump_x(buffer, 16, 'A');
511         dump_x(ctx->h, 16, 'M');
512         bmw_small_f0(q, (uint32_t*)buffer, ctx->h);
513         dump_x(buffer, 16, 'a');
514         dump_x(q, 16, 'Q');
515         bmw_small_f1(q, ctx->h, (uint32_t*)buffer);
516         dump_x(q, 32, 'Q');
517         bmw_small_f2((uint32_t*)buffer, q, ctx->h);
518         memcpy(ctx->h, buffer, 64);
519 #endif
520 }
521
522 void bmw224_init(bmw224_ctx_t* ctx){
523         uint8_t i;
524         ctx->h[0] = 0x00010203;
525         for(i=1; i<16; ++i){
526                 ctx->h[i] = ctx->h[i-1]+ 0x04040404;
527         }
528 #if BUG24
529         ctx->h[13] = 0x24353637;
530 #endif
531         ctx->counter=0;
532         ctx_dump(ctx);
533 }
534
535 void bmw256_init(bmw256_ctx_t* ctx){
536         uint8_t i;
537         ctx->h[0] = 0x40414243;
538         for(i=1; i<16; ++i){
539                 ctx->h[i] = ctx->h[i-1]+ 0x04040404;
540         }
541         ctx->counter=0;
542         ctx_dump(ctx);
543 }
544
545 void bmw224_nextBlock(bmw224_ctx_t* ctx, const void* block){
546         bmw_small_nextBlock(ctx, block);
547 }
548
549 void bmw256_nextBlock(bmw256_ctx_t* ctx, const void* block){
550         bmw_small_nextBlock(ctx, block);
551 }
552
553 void bmw224_lastBlock(bmw224_ctx_t* ctx, const void* block, uint16_t length_b){
554         bmw_small_lastBlock(ctx, block, length_b);
555 }
556
557 void bmw256_lastBlock(bmw256_ctx_t* ctx, const void* block, uint16_t length_b){
558         bmw_small_lastBlock(ctx, block, length_b);
559 }
560
561 void bmw224_ctx2hash(void* dest, const bmw224_ctx_t* ctx){
562         memcpy(dest, &(ctx->h[9]), 224/8);
563 }
564
565 void bmw256_ctx2hash(void* dest, const bmw256_ctx_t* ctx){
566         memcpy(dest, &(ctx->h[8]), 256/8);
567 }
568
569 void bmw224(void* dest, const void* msg, uint32_t length_b){
570         bmw_small_ctx_t ctx;
571         bmw224_init(&ctx);
572         while(length_b>=BMW_SMALL_BLOCKSIZE){
573                 bmw_small_nextBlock(&ctx, msg);
574                 length_b -= BMW_SMALL_BLOCKSIZE;
575                 msg = (uint8_t*)msg + BMW_SMALL_BLOCKSIZE_B;
576         }
577         bmw_small_lastBlock(&ctx, msg, length_b);
578         bmw224_ctx2hash(dest, &ctx);
579 }
580
581 void bmw256(void* dest, const void* msg, uint32_t length_b){
582         bmw_small_ctx_t ctx;
583         bmw256_init(&ctx);
584         while(length_b>=BMW_SMALL_BLOCKSIZE){
585                 bmw_small_nextBlock(&ctx, msg);
586                 length_b -= BMW_SMALL_BLOCKSIZE;
587                 msg = (uint8_t*)msg + BMW_SMALL_BLOCKSIZE_B;
588         }
589         bmw_small_lastBlock(&ctx, msg, length_b);
590         bmw256_ctx2hash(dest, &ctx);
591 }
592