]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-shacal2_enc-test.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / main-shacal2_enc-test.c
index bf631ebb29bd2ed3f7352c7e20d4296d5a2ea578..58e77d4141c3ee0a4ee9aa402ca224b406a653e2 100644 (file)
 #include "nessie_bc_test.h"
 #include "performance_test.h"
 
-charalgo_name = "Shacal2 encryption only";
+char *algo_name = "Shacal2 encryption only";
 
 /*****************************************************************************
  *  additional validation-functions                                                                                     *
  *****************************************************************************/
-void shacal2_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){
+void shacal2_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){
        memcpy(ctx, key, (keysize_b+7)/8);
 }
 
-void shacal2_enc_dummy(void* buffer, void* ctx){
+void shacal2_enc_dummy(void *buffer, void *ctx){
        shacal2_enc(buffer, ctx, SHACAL2_KEYSIZE);
 }