X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cubehash%2Fcubehash.h;fp=cubehash%2Fcubehash.h;h=6f1834c3e34337de3ce109074fd1b32a43c984ed;hp=03c499203adb7b48b512db5bea26bd54b5a23d02;hb=8d1970350aa1d7cdcb59cf79f7f60e385e2816e5;hpb=a30df60ac814350db243b270034ef188c8d02d5e diff --git a/cubehash/cubehash.h b/cubehash/cubehash.h index 03c4992..6f1834c 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) 2010 Daniel Otte (daniel.otte@rub.de) - 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,9 +32,9 @@ #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);