]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-cscipher-test.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / main-cscipher-test.c
index b8191f783b95b85ce34847a5d478b154c952fb29..0e96709fe53d61812b667d21f6a586686de9d274 100644 (file)
@@ -29,9 +29,9 @@
 #include "bcal-performance.h"
 #include "bcal_cscipher.h"
 
-charalgo_name = "CS-Cipher";
+char *algo_name = "CS-Cipher";
 
-const bcdesc_tconst algolist[] PROGMEM = {
+const bcdesc_t *const algolist[] PROGMEM = {
        (bcdesc_t*)&cscipher_desc,
        NULL
 };
@@ -40,7 +40,7 @@ const bcdesc_t* const algolist[] PROGMEM = {
  *  additional validation-functions                                                                                     *
  *****************************************************************************/
 
-void cscipher_init_dummy(const uint8_t* key, uint16_t keysize_b, void* ctx){
+void cscipher_init_dummy(const uint8_t *key, uint16_t keysize_b, void *ctx){
        cscipher_init(key, ctx);
 }