aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2022-07-16 03:33:22 +0700
committerGitHub <noreply@github.com>2022-07-15 22:33:22 +0200
commit13d86762e65f13c50870430f0e015a9ef387eb1d (patch)
tree21a66e54541702b700fcf1894b0d0ee0fbce212d /src
parent444928f3c5fb51056321c9fe554743e25354de27 (diff)
Core/Crypto: Correct header guard in SessionKeyGenerator.h (#28116)
Diffstat (limited to 'src')
-rw-r--r--src/common/Cryptography/SessionKeyGenerator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/Cryptography/SessionKeyGenerator.h b/src/common/Cryptography/SessionKeyGenerator.h
index 144ff00ff56..92485004766 100644
--- a/src/common/Cryptography/SessionKeyGenerator.h
+++ b/src/common/Cryptography/SessionKeyGenerator.h
@@ -15,12 +15,12 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <cstring>
-#include "CryptoHash.h"
-
#ifndef TRINITY_SESSIONKEYGENERATOR_HPP
#define TRINITY_SESSIONKEYGENERATOR_HPP
+#include <cstring>
+#include "CryptoHash.h"
+
template <typename Hash>
class SessionKeyGenerator
{