From 7c3e802a71b86fcb180a4c9ab1752b12e22e1ccc Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 1 Feb 2019 10:49:46 +0100 Subject: [PATCH] continue the good practice with replacing unneccessary op[] --- src/cube_hash.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/cube_hash.h b/src/cube_hash.h index c9df6ec..f2c7af8 100644 --- a/src/cube_hash.h +++ b/src/cube_hash.h @@ -37,16 +37,14 @@ public: state.init(); for (i = 0; i + B <= a.size(); i += B) - state.process_block (& (a[i])); + state.process_block (a.data() + i); - if (a.size() - i != 0) - state.process_final_incomplete_block (& (a[i]), a.size() - i); - else - state.process_final_incomplete_block (NULL, 0); //empty block, just finalize + state.process_final_incomplete_block (a.data() + i, + a.size() - i); std::vector result; result.resize (H, 0); - state.get_hash (& (result[0])); + state.get_hash (result.data()); return result; } }; @@ -79,7 +77,7 @@ public: } } while (apos + B <= asize) { - state.process_block (& (a[apos])); + state.process_block (a + apos); apos += B; } for (; apos < asize; ++apos, ++bpos) @@ -90,7 +88,7 @@ public: state.process_final_incomplete_block (buf, bpos); std::vector result; result.resize (H, 0); - state.get_hash (& (result[0])); + state.get_hash (result.data()); return result; } };