]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-shabea-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-shabea-test.c
index 471881eac18c81fb40cb68cbf39e703e71f0d9a9..5d6e633a3fea4e6beaf7c9177dbe5f47274a643d 100644 (file)
@@ -1,7 +1,7 @@
 /* main-shabea-test.c */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #include "nessie_bc_test.h"
 #include "performance_test.h"
 
-charalgo_name = "Shabea";
+char *algo_name = "Shabea";
 
 /*****************************************************************************
  *  additional validation-functions                                          *
  *****************************************************************************/
-void shabea_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){
+void shabea_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){
        memcpy(ctx, key, (keysize_b+7)/8);
 }
 
-void shabea_enc_dummy(void* buffer, void* ctx){
+void shabea_enc_dummy(void *buffer, void *ctx){
        shabea256(buffer, ctx, 256, 1, 16);
 }
 
-void shabea_dec_dummy(void* buffer, void* ctx){
+void shabea_dec_dummy(void *buffer, void *ctx){
        shabea256(buffer, ctx, 256, 0, 16);
 }
 
@@ -96,7 +96,7 @@ void testrun_performance_shabea(void){
  *  self tests                                                                                                                          *
  *****************************************************************************/
 
-void testencrypt(uint8_t* block, uint8_t* key){
+void testencrypt(uint8_t *block, uint8_t *key){
        cli_putstr("\r\n==testy-encrypt==\r\n key: ");
        cli_hexdump(key,16);
        cli_putstr("\r\n plain: ");
@@ -106,7 +106,7 @@ void testencrypt(uint8_t* block, uint8_t* key){
        cli_hexdump(block,32);
 }
 
-void testdecrypt(uint8_t* block, uint8_t* key){
+void testdecrypt(uint8_t *block, uint8_t *key){
 
        cli_putstr("\r\n==testy-decrypt==\r\n key: ");
        cli_hexdump(key,16);