GCrypt/GhettoCrypt/include/Halfblock.h
2022-05-16 21:43:22 +02:00

11 lines
223 B
C++

#pragma once
#include "SecureBitset.h"
#include <cstdint>
#include "Config.h"
namespace GhettoCipher
{
constexpr std::size_t HALFBLOCK_SIZE = (BLOCK_SIZE / 2);
typedef SecureBitset<HALFBLOCK_SIZE> Halfblock;
}