8 lines
111 B
C++
8 lines
111 B
C++
#pragma once
|
|
|
|
namespace GhettoCipher
|
|
{
|
|
constexpr int BLOCK_SIZE = 128;
|
|
constexpr int N_ROUNDS = 64;
|
|
}
|