From 30dc3228911ed8b3b328c72ecf543e1626a25734 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 26 May 2024 07:32:40 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2041f89?= =?UTF-8?q?198aac4974e64b01f283792d7ef06f04890=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _cryptography_8h_source.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/_cryptography_8h_source.html b/_cryptography_8h_source.html index 24411330..f5ef9719 100644 --- a/_cryptography_8h_source.html +++ b/_cryptography_8h_source.html @@ -201,17 +201,17 @@ $(document).ready(function(){initNavTree('_cryptography_8h_source.html',''); ini
155  void subWord(uint8_t* word);
156  void rotWord(uint8_t* word);
157 
-
158  void addRoundKey(uint8_t round, state_t* state, const uint8_t* roundKey);
-
159 
-
160  void blockXor(uint8_t* dst, const uint8_t* a, const uint8_t* b);
-
161  void blockLeftshift(uint8_t* dst, const uint8_t* src);
-
162  void generateSubkeys(uint8_t* key1, uint8_t* key2);
-
163 
-
164  void subBytes(state_t* state, const uint8_t* box);
-
165  void shiftRows(state_t* state, bool inv);
-
166  void mixColumns(state_t* state, bool inv);
-
167 
-
168  uint8_t mul(uint8_t a, uint8_t b);
+
158  void blockXor(uint8_t* dst, const uint8_t* a, const uint8_t* b);
+
159  void blockLeftshift(uint8_t* dst, const uint8_t* src);
+
160  void generateSubkeys(uint8_t* key1, uint8_t* key2);
+
161 
+
162  void subBytes(state_t* state, const uint8_t* box);
+
163  void shiftRows(state_t* state, bool inv);
+
164  void mixColumns(state_t* state, bool inv);
+
165 
+
166  // cppcheck seems convinced these are nut used, which is not true
+
167  uint8_t mul(uint8_t a, uint8_t b); // cppcheck-suppress unusedPrivateFunction
+
168  void addRoundKey(uint8_t round, state_t* state, const uint8_t* roundKey); // cppcheck-suppress unusedPrivateFunction
169 };
170 
171 // the global singleton