X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=xtea%2Fxtea.h;h=b8783a698f41295dc491f638c1de65379e8382d5;hb=e9e07569721b9e005d6b602e26a03e930e796577;hp=b753bf753a469165b72e0f7aad1d68bf7ececc00;hpb=d32eba56ce10ea6b9eff123b50d9842673b38f2b;p=avr-crypto-lib.git diff --git a/xtea/xtea.h b/xtea/xtea.h index b753bf7..b8783a6 100644 --- a/xtea/xtea.h +++ b/xtea/xtea.h @@ -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_*/