diff options
-rw-r--r-- | libar2_hash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libar2_hash.c b/libar2_hash.c index 3ee6bca..4ccbf18 100644 --- a/libar2_hash.c +++ b/libar2_hash.c @@ -295,6 +295,7 @@ fill_block(struct block *block, const struct block *prevblock, const struct bloc } } + /* TODO optimise (also fBlaMka) once similar BLAKE2b code in libblake has been optimised { */ #define BLAMKA_G(A, B, C, D)\ A = fBlaMka(A, B);\ D = rotr64(D ^ A, 32);\ @@ -335,6 +336,7 @@ fill_block(struct block *block, const struct block *prevblock, const struct bloc 64, 65, 80, 81, 96, 97, 112, 113); } + /* } */ blockxor(block, &tmpblock); |