GCrypt/GhettoCrypt/Halfblock.h
2021-12-06 03:06:59 +01:00

10 lines
186 B
C++

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