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/>.
23 #include "blockcipher_descriptor.h"
24 #include "keysize_descriptor.h"
27 uint8_t bcal_cipher_init(const bcdesc_t* cipher_descriptor,
28 const void* key, uint16_t keysize, bcgen_ctx_t* ctx){
29 if(!is_valid_keysize_P((PGM_VOID_P)(pgm_read_word(cipher_descriptor->valid_keysize_desc)),
35 ctx->desc_ptr = (bcdesc_t*)cipher_descriptor;
36 ctx->keysize = keysize;
37 flags = pgm_read_byte(cipher_descriptor->flags);
38 init_fpt.initvoid = (void_fpt)(pgm_read_word(cipher_descriptor->init.initvoid));
39 if(init_fpt.initvoid == NULL){
40 if(!(ctx->ctx = malloc(keysize/8)))
42 memcpy(ctx->ctx, key, keysize/8);
45 if(!(ctx->ctx = malloc(pgm_read_word(cipher_descriptor->ctxsize_B))))
47 if((flags&BC_INIT_TYPE)==BC_INIT_TYPE_1){
48 init_fpt.init1((void*)key, ctx->ctx);
50 init_fpt.init2((void*)key, keysize, ctx->ctx);
55 void bcal_cipher_free(bcgen_ctx_t* ctx){
59 free_fpt = (bc_free_fpt)(pgm_read_word(ctx->desc_ptr->free));
65 void bcal_cipher_enc(void* block, const bcgen_ctx_t* ctx){
67 enc_fpt.encvoid = (void_fpt)pgm_read_word(ctx->desc_ptr->enc.encvoid);
69 /* very bad error, no enciphering function specified */
72 enc_fpt.enc1(block, ctx->ctx);
76 void bcal_cipher_dec(void* block, const bcgen_ctx_t* ctx){
78 dec_fpt.decvoid = (void_fpt)pgm_read_word(ctx->desc_ptr->dec.decvoid);
80 /* very bad error, no deciphering function specified */
83 dec_fpt.dec1(block, ctx->ctx);