]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-present-test.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / main-present-test.c
index bd20b1e2820af8b5d3767fb7b8f16aa4ab29b09a..226fcf7a4d62c351d9f34be5854503d7791c3286 100644 (file)
@@ -31,9 +31,9 @@
 #include "bcal_present80.h"
 #include "bcal_present128.h"
 
-charalgo_name = "Present";
+char *algo_name = "Present";
 
-const bcdesc_tconst algolist[] PROGMEM = {
+const bcdesc_t *const algolist[] PROGMEM = {
        (bcdesc_t*)&present80_desc,
        (bcdesc_t*)&present128_desc,
        NULL
@@ -45,7 +45,7 @@ void testrun_nessie_present(void){
        bcal_nessie_multiple(algolist);
 }
 
-void testrun_selfenc(uint8_t* key, uint8_t* buffer){
+void testrun_selfenc(uint8_t *key, uint8_t *buffer){
 
        present80_ctx_t ctx;
        cli_putstr_P(PSTR("\r\nkey   : "));
@@ -62,7 +62,7 @@ void testrun_selfenc(uint8_t* key, uint8_t* buffer){
        cli_putstr_P(PSTR("\r\n"));
 }
 
-void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){
+void testrun_selfenc_128(uint8_t *key, uint8_t *buffer){
 
        present128_ctx_t ctx;
        cli_putstr_P(PSTR("\r\nkey   : "));
@@ -78,7 +78,7 @@ void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){
        cli_hexdump(buffer, 8);
        cli_putstr_P(PSTR("\r\n"));
 }
-// void present_key_test(const uint8_tkey);
+// void present_key_test(const uint8_t *key);
 
 
 void testrun_self_present(void){