1 /* keysize_descriptor.c */
3 This file is part of the AVR-Crypto-Lib.
4 Copyright (C) 2009 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/>.
20 * \file keysize_descriptor.c
22 * \email daniel.otte@rub.de
24 * \license GPLv3 or later
29 #include <avr/pgmspace.h>
30 #include "keysize_descriptor.h"
32 uint8_t is_valid_keysize_P(PGM_VOID_P ks_desc, uint16_t keysize){
34 type = pgm_read_byte(ks_desc++);
35 if(type==KS_TYPE_TERMINATOR)
37 if(type==KS_TYPE_LIST){
40 items = pgm_read_byte(ks_desc++);
42 item = pgm_read_word(ks_desc);
43 ks_desc = (uint8_t*)ks_desc + 2;
47 ks_desc = (uint8_t*)ks_desc - 2;
49 if(type==KS_TYPE_RANGE){
51 min = pgm_read_word(ks_desc);
52 ks_desc = (uint8_t*)ks_desc + 2;
53 max = pgm_read_word(ks_desc);
54 if(min<=keysize && keysize<=max)
57 if(type==KS_TYPE_ARG_RANGE){
58 uint16_t max, min, dist, offset;
59 min = pgm_read_word(ks_desc);
60 ks_desc = (uint8_t*)ks_desc + 2;
61 max = pgm_read_word(ks_desc);
62 ks_desc = (uint8_t*)ks_desc + 2;
63 dist = pgm_read_word(ks_desc);
64 ks_desc = (uint8_t*)ks_desc + 2;
65 offset = pgm_read_word(ks_desc);
66 if(min<=keysize && keysize<=max && (keysize%dist==offset))
69 if(type>KS_TYPE_ARG_RANGE){
70 /* bad error, you may insert a big warning message here */
73 return is_valid_keysize_P((uint8_t*)ks_desc+1, keysize); /* search the next record */
76 uint16_t get_keysize(PGM_VOID_P ks_desc){
79 type = pgm_read_byte(ks_desc);
80 if(type==KS_TYPE_LIST){
81 ks_desc = (uint8_t*)ks_desc + 1;
83 ks_desc = (uint8_t*)ks_desc + 1;
84 keysize = pgm_read_word(ks_desc);
88 uint16_t get_keysizes(PGM_VOID_P ks_desc, uint16_t** list){
92 type = pgm_read_byte(ks_desc);
93 ks_desc = (uint8_t*)ks_desc + 1;
94 if(type==KS_TYPE_LIST){
95 items = pgm_read_byte(ks_desc);
96 ks_desc = (uint8_t*)ks_desc + 1;
98 *list = malloc(items*2);
103 for(i=0; i<items; ++i){
104 ((uint16_t*)(*list))[i] = pgm_read_word(ks_desc);
105 ks_desc = (uint8_t*)ks_desc + 2;
109 if(type==KS_TYPE_ARG_RANGE){
110 uint16_t min, max, distance, offset;
111 min = pgm_read_word(ks_desc);
112 ks_desc = (uint8_t*)ks_desc + 2;
113 max = pgm_read_word(ks_desc);
114 ks_desc = (uint8_t*)ks_desc + 2;
115 distance = pgm_read_word(ks_desc);
116 ks_desc = (uint8_t*)ks_desc + 2;
117 offset = pgm_read_word(ks_desc);
118 ks_desc = (uint8_t*)ks_desc + 2;
119 items = (max-min)/distance+1;
120 if(min%distance!=offset){
122 min += (distance-(min%distance-offset))%distance;
125 *list = malloc(items*2);
132 ((uint16_t*)*list)[i++] = min;
137 if(type==KS_TYPE_RANGE){
138 uint16_t min, max, distance=8, offset=0;
139 min = pgm_read_word(ks_desc);
140 ks_desc = (uint8_t*)ks_desc + 2;
141 max = pgm_read_word(ks_desc);
142 items = (max-min)/distance+1;
143 if(min%distance!=offset){
145 min += (distance-(min%distance-offset))%distance;
148 *list = malloc(items*2);
155 ((uint16_t*)*list)[i++] = min;