X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=blake%2Fblake_large.h;h=003405175fe889ce21aafe302176d457412b417e;hp=0ad66ea511121775e6d16aa9e670f65a31bc7592;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=22b608111d32de8b0c8fa34f35bd0d8892df2285 diff --git a/blake/blake_large.h b/blake/blake_large.h index 0ad66ea..0034051 100644 --- a/blake/blake_large.h +++ b/blake/blake_large.h @@ -1,25 +1,25 @@ /* blake_large.h */ /* - This file is part of the AVR-Crypto-Lib. - Copyright (C) 2009 Daniel Otte (daniel.otte@rub.de) + This file is part of the AVR-Crypto-Lib. + 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 - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ + You should have received a copy of the GNU General Public License + along with this program. If not, see . + */ /* * \file blake_large.h * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \date 2009-05-08 * \license GPLv3 or later * @@ -37,31 +37,34 @@ #define BLAKE512_BLOCKSIZE_B BLAKE_LARGE_BLOCKSIZE_B typedef struct { - uint64_t h[8]; - uint64_t s[4]; - uint32_t counter; - uint8_t appendone; + uint64_t h[8]; + uint64_t s[4]; + uint32_t counter; + uint8_t appendone; } blake_large_ctx_t; typedef blake_large_ctx_t blake384_ctx_t; typedef blake_large_ctx_t blake512_ctx_t; -void blake384_init(blake384_ctx_t* ctx); -void blake512_init(blake512_ctx_t* ctx); +void blake384_init(blake384_ctx_t *ctx); +void blake512_init(blake512_ctx_t *ctx); -void blake_large_nextBlock(blake_large_ctx_t* ctx, const void* block); -void blake_large_lastBlock(blake_large_ctx_t* ctx, const void* block, uint16_t length_b); +void blake_large_nextBlock(blake_large_ctx_t *ctx, const void *block); +void blake_large_lastBlock(blake_large_ctx_t *ctx, const void *block, + uint16_t length_b); -void blake384_nextBlock(blake384_ctx_t* ctx, const void* block); -void blake384_lastBlock(blake384_ctx_t* ctx, const void* block, uint16_t length_b); +void blake384_nextBlock(blake384_ctx_t *ctx, const void *block); +void blake384_lastBlock(blake384_ctx_t *ctx, const void *block, + uint16_t length_b); -void blake512_nextBlock(blake512_ctx_t* ctx, const void* block); -void blake512_lastBlock(blake512_ctx_t* ctx, const void* block, uint16_t length_b); +void blake512_nextBlock(blake512_ctx_t *ctx, const void *block); +void blake512_lastBlock(blake512_ctx_t *ctx, const void *block, + uint16_t length_b); -void blake384_ctx2hash(void* dest, const blake384_ctx_t* ctx); -void blake512_ctx2hash(void* dest, const blake512_ctx_t* ctx); +void blake384_ctx2hash(void *dest, const blake384_ctx_t *ctx); +void blake512_ctx2hash(void *dest, const blake512_ctx_t *ctx); -void blake384(void* dest, const void* msg, uint32_t length_b); -void blake512(void* dest, const void* msg, uint32_t length_b); +void blake384(void *dest, const void *msg, uint32_t length_b); +void blake512(void *dest, const void *msg, uint32_t length_b); #endif /* BLAKE_LARGE_H_ */