X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=noekeon%2Fnoekeon_ctr.h;h=ed8af7130e6b517d6f84c78e10e57fb75396104c;hp=19cbe36446fa45b3c3f7fbfc4b49ba6ed1229c2c;hb=d9352fc79fbdee0cf3288809b104ea196ea85693;hpb=924aa320bef6f192feecdb67d209c790bd49ea49 diff --git a/noekeon/noekeon_ctr.h b/noekeon/noekeon_ctr.h index 19cbe36..ed8af71 100644 --- a/noekeon/noekeon_ctr.h +++ b/noekeon/noekeon_ctr.h @@ -1,7 +1,7 @@ /* noekeon_ctr.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 @@ -18,7 +18,7 @@ */ /* * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \date 2008-08-06 * \license GPLv3 or later * @@ -30,13 +30,13 @@ #define NOEKEON_CTR_H_ #include -#include "noekeon/noekeon.h" +#include "noekeon.h" typedef struct{ uint8_t counter[16]; uint8_t key[16]; }noekeon_ctr_ctx_t; -void noekeon_ctr_next(void* buffer, const noekeon_ctr_ctx_t* ctx); +void noekeon_ctr_next(void *buffer, const noekeon_ctr_ctx_t *ctx); #endif /*NOEKEON_CTR_H_*/