X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=camellia%2Fcamellia.h;h=28424a3ca99c719c2fd8a5bb92b03e194f99d2d4;hb=e9e07569721b9e005d6b602e26a03e930e796577;hp=760961366dcb2a9af80091f10b74f13371f0d784;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25;p=avr-crypto-lib.git diff --git a/camellia/camellia.h b/camellia/camellia.h index 7609613..28424a3 100644 --- a/camellia/camellia.h +++ b/camellia/camellia.h @@ -1,7 +1,7 @@ /* camellia.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 @@ -29,9 +29,9 @@ typedef struct camellia128_ctx_s{ }camellia128_ctx_t; -void camellia128_init(const void* key, camellia128_ctx_t* s); -void camellia128_enc(void* block, const camellia128_ctx_t* s); -void camellia128_dec(void* block, const camellia128_ctx_t* s); +void camellia128_init(const void *key, camellia128_ctx_t *s); +void camellia128_enc(void *block, const camellia128_ctx_t *s); +void camellia128_dec(void *block, const camellia128_ctx_t *s); #endif /*CAMELLIA_H_*/