]> git.cryptolib.org Git - avr-crypto-lib.git/blob - keysize_descriptor.c
new hash function abstraction layer + shavs + dump util + ...
[avr-crypto-lib.git] / keysize_descriptor.c
1 /* keysize_descriptor.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    keysize_descriptor.c 
21  * \author  Daniel Otte
22  * \email   daniel.otte@rub.de
23  * \date    2009-01-07
24  * \license GPLv3 or later
25  */
26
27 #include <stdint.h>
28 #include <avr/pgmspace.h>
29 #include "keysize_descriptor.h"
30
31 uint8_t is_valid_keysize_P(PGM_VOID_P ks_desc, uint16_t keysize){
32         uint8_t type;
33         type = pgm_read_byte(ks_desc++);
34         if(type==KS_TYPE_TERMINATOR)
35                 return 0;
36         if(type==KS_TYPE_LIST){
37                 uint8_t items;
38                 uint16_t item;
39                 items = pgm_read_byte(ks_desc++);
40                 while(items--){
41                         item = pgm_read_word(ks_desc);
42                         ks_desc+=2;
43                         if(item==keysize)
44                                 return 1;
45                 }
46                 ks_desc -= 2;
47         }
48         if(type==KS_TYPE_RANGE){
49                 uint16_t max, min;
50                 min = pgm_read_word(ks_desc);
51                 ks_desc+=2;
52                 max = pgm_read_word(ks_desc);
53                 if(min<=keysize && keysize<=max)
54                         return 1;
55         }
56         if(type==KS_TYPE_ARG_RANGE){
57                 uint16_t max, min, dist, offset;
58                 min = pgm_read_word(ks_desc);
59                 ks_desc+=2;
60                 max = pgm_read_word(ks_desc);
61                 ks_desc+=2;
62                 dist = pgm_read_word(ks_desc);
63                 ks_desc+=2;
64                 offset = pgm_read_word(ks_desc);
65                 if(min<=keysize && keysize<=max && (keysize%dist==offset))
66                         return 1;
67         }
68         if(type>KS_TYPE_ARG_RANGE){
69                 /* bad error, you may insert a big warning message here */
70                 return 0;
71         }
72         return is_valid_keysize(ks_desc+1, keysize) /* search the next record */
73 }
74
75