GCrypt/Halfblock.h
2021-12-06 02:20:47 +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;
}