]> git.cryptolib.org Git - arm-crypto-lib.git/blobdiff - bcal/bcal_camellia128.c
now with rsassa-pkcs1v15 (old rsa signatures) + many new things
[arm-crypto-lib.git] / bcal / bcal_camellia128.c
index 767c1b8837fd4bd2c324e32db921ceb1a3b41667..55de26a5bdccaf491f76d9e4cae8f8cfcfe3b1cf 100644 (file)
  * 
  */
 
-#include <avr/pgmspace.h>
 #include <stdlib.h>
 #include "blockcipher_descriptor.h"
 #include "camellia.h"
 #include "keysize_descriptor.h"
 
-const char camellia128_str[]   PROGMEM = "Camellia-128";
+const char camellia128_str[] = "Camellia-128";
 
-const uint8_t camellia128_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), 
+const uint8_t camellia128_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), 
                                                 KS_TYPE_TERMINATOR    };
 
-const bcdesc_t camellia128_desc PROGMEM = {
+const bcdesc_t camellia128_desc = {
        BCDESC_TYPE_BLOCKCIPHER,
        BC_INIT_TYPE_2,
        camellia128_str,