X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=camellia.h;h=d55d08f9e600a9889f7278454e73207033183595;hb=17332291e15183d71d88ed868275e3cb53917180;hp=99700895d6fc1da5ae80afa7d64c8d28d59fab04;hpb=12883cff6e7d233365e8477e08f90c75fa5a48b2;p=avr-crypto-lib.git diff --git a/camellia.h b/camellia.h index 9970089..d55d08f 100644 --- a/camellia.h +++ b/camellia.h @@ -1,6 +1,6 @@ /* camellia.h */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -29,7 +29,7 @@ typedef struct camellia128_ctx_s{ }camellia128_ctx_t; -void camellia128_init(const uint8_t* key, 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);