3 This file is part of the ARM-Crypto-Lib.
4 Copyright (C) 2011 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/>.
23 #include "streamcipher_descriptor.h"
24 #include "keysize_descriptor.h"
25 #include "scal-basic.h"
27 uint8_t scal_cipher_init(const scdesc_t* cipher_descriptor,
28 const void* key, uint16_t keysize_b,
29 const void* iv, uint16_t ivsize_b, scgen_ctx_t* ctx){
33 if(!is_valid_keysize_P(cipher_descriptor->valid_keysize_desc, keysize_b)){
36 if(!is_valid_keysize_P(cipher_descriptor->valid_ivsize_desc, ivsize_b)){
41 flags = cipher_descriptor->flags;
42 ctx->desc_ptr = cipher_descriptor;
43 ctx->keysize = keysize_b;
44 ctx->ivsize = ivsize_b;
45 ctx->ctx = malloc(cipher_descriptor->ctxsize_B);
49 init_fpt = (cipher_descriptor->init);
50 switch(flags&SC_INIT_TYPE){
52 init_fpt.init1(key, ctx->ctx);
55 init_fpt.init2(key, iv, ctx->ctx);
58 init_fpt.init3(key, keysize_b, ctx->ctx);
61 init_fpt.init4(key, keysize_b, iv, ctx->ctx);
64 init_fpt.init5(key, keysize_b, iv, ivsize_b, ctx->ctx);
70 blocksize_b = cipher_descriptor->gensize_b;
72 ctx->buffer=malloc((blocksize_b+7)/8);
73 if(ctx->buffer==NULL){
82 void scal_cipher_free(scgen_ctx_t* ctx){
91 uint8_t scal_cipher_gen_byte(scgen_ctx_t* ctx){
95 flags = ctx->desc_ptr->flags;
96 blocksize_b = ctx->desc_ptr->gensize_b;
97 gen_fpt = (void_fpt)(ctx->desc_ptr->gen.genvoid);
100 if((flags&SC_GEN_TYPE)==SC_GEN_TYPE_1){
101 return ((sc_gen1_fpt)gen_fpt)(ctx->ctx);
104 ((sc_gen2_fpt)gen_fpt)(&r, ctx->ctx);
112 r |= ((((sc_gen1_fpt)gen_fpt)(ctx->ctx))&(0xff<<(8-blocksize_b)))>>fill;
119 ((sc_gen2_fpt)gen_fpt)(ctx->buffer, ctx->ctx);
120 ctx->index = blocksize_b;
122 r=ctx->buffer[(blocksize_b-ctx->index)/8];
128 void scal_cipher_gen_block(void* block, scgen_ctx_t* ctx){
130 /* uint16_t blocksize_b; */
132 flags = ctx->desc_ptr->flags;
133 /* blocksize_b = ctx->desc_ptr->gensize_b; */
134 gen_fpt = ctx->desc_ptr->gen;
135 if((flags&SC_GEN_TYPE)==SC_GEN_TYPE_1){
136 *((uint8_t*)block) = gen_fpt.gen1(ctx->ctx);
138 gen_fpt.gen2(block, ctx->ctx);
142 void scal_cipher_gen_fillblock(void* block, uint16_t blocksize_B, scgen_ctx_t* ctx){
144 *((uint8_t*)block) = scal_cipher_gen_byte(ctx);
145 block = (uint8_t*)block + 1;
150 uint16_t scal_cipher_getBlocksize_b(const scdesc_t* desc){
151 uint16_t blocksize_b;
152 blocksize_b = desc->gensize_b;
156 void* scal_cipher_getKeysizeDesc(const scdesc_t* desc){
157 return (void*)(desc->valid_keysize_desc);
160 void* scal_cipher_getIVsizeDesc(const scdesc_t* desc){
161 return (void*)(desc->valid_ivsize_desc);