]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - xtea/xtea.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / xtea / xtea.h
index b753bf753a469165b72e0f7aad1d68bf7ececc00..b8783a698f41295dc491f638c1de65379e8382d5 100644 (file)
@@ -1,7 +1,7 @@
 /* xtea.h */
 /*
     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
@@ -42,8 +42,8 @@
  * v:   the block to operate on (64 bit)
  * k:   the key for en/decryption (128 bit)
  */
-void xtea_enc(void* dest, const void* v, const void* k);
-void xtea_dec(void* dest, const void* v, const void* k);
+void xtea_enc(void *dest, const void *v, const void *k);
+void xtea_dec(void *dest, const void *v, const void *k);
 
 
 #endif /*XTEA_H_*/