X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=shacal1%2Fshacal1_enc.c;h=e87a7982e8d845674903850806a411da77bb467d;hp=87e5d456d52690269623fe3246ba751cbc527937;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=27f4804c185ae24b3b6367bb2fdb898d6692d0f6 diff --git a/shacal1/shacal1_enc.c b/shacal1/shacal1_enc.c index 87e5d45..e87a798 100644 --- a/shacal1/shacal1_enc.c +++ b/shacal1/shacal1_enc.c @@ -1,7 +1,7 @@ /* shacal1_enc.c */ /* 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 @@ -31,7 +31,7 @@ #include "sha1.h" #include "shacal1_enc.h" -void shacal1_enc(void* buffer, void* key, uint16_t keysize_b){ +void shacal1_enc(void *buffer, void *key, uint16_t keysize_b){ sha1_ctx_t ctx, t_ctx; uint8_t i; memcpy(t_ctx.h, buffer, SHA1_HASH_BITS/8);