X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cubehash%2Fcubehash.h;h=a9f9d468f404225ddc488ba79d92b9b5224ea672;hp=1f7b13a2c51c4c6780a0b6005908f8970b34b560;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=2f9b301c15c03faa76b7f9c95b18eadaa8d013ae diff --git a/cubehash/cubehash.h b/cubehash/cubehash.h index 1f7b13a..a9f9d46 100644 --- a/cubehash/cubehash.h +++ b/cubehash/cubehash.h @@ -1,21 +1,21 @@ /* cubehash.h */ /* - This file is part of the AVR-Crypto-Lib. - Copyright (C) 2010 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 . + */ #ifndef CUBEHASH_H_ #define CUBEHASH_H_ @@ -32,26 +32,26 @@ #define CUBEHASH512_BLOCKSIZE_B ((CUBEHASH512_BLOCKSIZE+7)/8) typedef struct { - uint32_t a[32]; - uint8_t rounds; - uint8_t blocksize_B; + uint32_t a[32]; + uint8_t rounds; + uint8_t blocksize_B; } cubehash_ctx_t; -void cubehash_init(uint8_t r, uint8_t b, uint16_t h, cubehash_ctx_t* ctx); -void cubehash_nextBlock(cubehash_ctx_t* ctx, void* block); -void cubehash_lastBlock(cubehash_ctx_t* ctx, void* block, uint16_t length_b); -void cubehash_ctx2hash(void* dest, uint16_t length_b, cubehash_ctx_t* ctx); +void cubehash_init(uint8_t r, uint8_t b, uint16_t h, cubehash_ctx_t *ctx); +void cubehash_nextBlock(cubehash_ctx_t *ctx, void *block); +void cubehash_lastBlock(cubehash_ctx_t *ctx, void *block, uint16_t length_b); +void cubehash_ctx2hash(void *dest, uint16_t length_b, cubehash_ctx_t *ctx); -void cubehash224_init(cubehash_ctx_t* ctx); -void cubehash224_ctx2hash(void* dest, cubehash_ctx_t* ctx); +void cubehash224_init(cubehash_ctx_t *ctx); +void cubehash224_ctx2hash(void *dest, cubehash_ctx_t *ctx); -void cubehash256_init(cubehash_ctx_t* ctx); -void cubehash256_ctx2hash(void* dest, cubehash_ctx_t* ctx); +void cubehash256_init(cubehash_ctx_t *ctx); +void cubehash256_ctx2hash(void *dest, cubehash_ctx_t *ctx); -void cubehash384_init(cubehash_ctx_t* ctx); -void cubehash384_ctx2hash(void* dest, cubehash_ctx_t* ctx); +void cubehash384_init(cubehash_ctx_t *ctx); +void cubehash384_ctx2hash(void *dest, cubehash_ctx_t *ctx); -void cubehash512_init(cubehash_ctx_t* ctx); -void cubehash512_ctx2hash(void* dest, cubehash_ctx_t* ctx); +void cubehash512_init(cubehash_ctx_t *ctx); +void cubehash512_ctx2hash(void *dest, cubehash_ctx_t *ctx); #endif /* CUBEHASH_H_ */