X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=shacal2%2Fshacal2_enc.c;h=da92b59c1bf7b954dc7e69273fda9ab89b78a78e;hb=d9352fc79fbdee0cf3288809b104ea196ea85693;hp=b5380e57f3f4fefb6d54877266be7752e00e6600;hpb=b8d6b2bd3ddea45506f584c7d44fe5fff0557ed1;p=avr-crypto-lib.git diff --git a/shacal2/shacal2_enc.c b/shacal2/shacal2_enc.c index b5380e5..da92b59 100644 --- a/shacal2/shacal2_enc.c +++ b/shacal2/shacal2_enc.c @@ -1,7 +1,7 @@ /* shacal2_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 @@ -32,7 +32,7 @@ #include "shacal2_enc.h" -void shacal2_enc(void* buffer, void* key, uint16_t keysize_b){ +void shacal2_enc(void *buffer, void *key, uint16_t keysize_b){ uint8_t i; sha256_ctx_t ctx, t_ctx; memcpy(ctx.h, buffer, SHACAL2_BLOCKSIZE_B);