GCrypt/GhettoCrypt/Config.h
2021-12-06 13:23:13 +01:00

9 lines
147 B
C++

#pragma once
#include <cstdint>
namespace GhettoCipher
{
constexpr std::size_t BLOCK_SIZE = 512;
constexpr std::size_t N_ROUNDS = 64;
}