X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bcal_aes192.c;h=48f99549fe6fdb8a61418c9ec172a85de9f5816a;hb=02ac3b653f3a11f284cc1a0cb0e983575f2f431b;hp=47d4cb7e1f38af09347f25201500ccc8d4a7ea41;hpb=1a1a9f56318298d8ec87df9f7e78da68732f0d48;p=avr-crypto-lib.git diff --git a/bcal_aes192.c b/bcal_aes192.c index 47d4cb7..48f9954 100644 --- a/bcal_aes192.c +++ b/bcal_aes192.c @@ -1,6 +1,6 @@ /* bcal_aes192.c */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -41,11 +41,11 @@ const uint8_t aes192_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(192), const bcdesc_t aes192_desc PROGMEM = { BCDESC_TYPE_BLOCKCIPHER, - BC_INIT_TYPE_2, + BC_INIT_TYPE_1, aes192_str, sizeof(aes192_ctx_t), 128, - {(void_fpt)aes_init}, + {(void_fpt)aes192_init}, {(void_fpt)aes192_enc}, {(void_fpt)aes192_dec}, (bc_free_fpt)NULL,