X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bcal%2Fbcal_noekeon.c;h=7f39d17b4c48127ce892081f2ca75614b4b2d331;hb=4702ee6467ec406ab58d3a5cb4e3144133ba4909;hp=c58bdcbeee6be637a7478acf9105d2e5b984c9e5;hpb=e1db57c69472f52cf2405ef4eb22f085a868eeeb;p=arm-crypto-lib.git diff --git a/bcal/bcal_noekeon.c b/bcal/bcal_noekeon.c index c58bdcb..7f39d17 100644 --- a/bcal/bcal_noekeon.c +++ b/bcal/bcal_noekeon.c @@ -1,18 +1,17 @@ /* bcal_noekeon.c */ -#include #include #include "blockcipher_descriptor.h" #include "noekeon.h" #include "keysize_descriptor.h" -const char noekeon_direct_str[] PROGMEM = "Noekeon-Direct"; -const char noekeon_indirect_str[] PROGMEM = "Noekeon-Indirect"; +const char noekeon_direct_str[] = "Noekeon-Direct"; +const char noekeon_indirect_str[] = "Noekeon-Indirect"; -const uint8_t noekeon_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), - KS_TYPE_TERMINATOR }; +const uint8_t noekeon_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), + KS_TYPE_TERMINATOR }; -const bcdesc_t noekeon_direct_desc PROGMEM = { +const bcdesc_t noekeon_direct_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_ENC_TYPE_1, noekeon_direct_str, @@ -25,7 +24,7 @@ const bcdesc_t noekeon_direct_desc PROGMEM = { noekeon_keysize_desc }; -const bcdesc_t noekeon_indirect_desc PROGMEM = { +const bcdesc_t noekeon_indirect_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1 | BC_ENC_TYPE_1, noekeon_indirect_str,