X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=khazad%2Fkhazad.h;h=971638278690a53838e78f8b697c27f296285bdb;hb=HEAD;hp=1f1c3358581919bdfb8cd9d8ba4ee47b17ad09bd;hpb=62d7d4d281af70bc2f56fb3baa86a6915e126240;p=avr-crypto-lib.git diff --git a/khazad/khazad.h b/khazad/khazad.h index 1f1c335..9716382 100644 --- a/khazad/khazad.h +++ b/khazad/khazad.h @@ -1,7 +1,7 @@ /* khazad.h */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2011 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 @@ -26,9 +26,9 @@ typedef struct { uint8_t k[9][8]; }khazad_ctx_t; -void khazad_enc(void* buffer, const khazad_ctx_t* ctx); -void khazad_dec(void* buffer, const khazad_ctx_t* ctx); -void khazad_init(const void* key, khazad_ctx_t* ctx); +void khazad_enc(void *buffer, const khazad_ctx_t *ctx); +void khazad_dec(void *buffer, const khazad_ctx_t *ctx); +void khazad_init(const void *key, khazad_ctx_t *ctx); uint8_t khazad_sbox(uint8_t); #endif /* KHAZAD_H_ */