Fixed compiler warnings for msvc x64

This commit is contained in:
Leonetienne
2021-12-06 13:22:48 +01:00
parent 96632f87ee
commit 1931602a38
4 changed files with 41 additions and 37 deletions

View File

@@ -1,7 +1,8 @@
#pragma once
#include <cstdint>
namespace GhettoCipher
{
constexpr int BLOCK_SIZE = 512;
constexpr int N_ROUNDS = 64;
constexpr std::size_t BLOCK_SIZE = 512;
constexpr std::size_t N_ROUNDS = 64;
}