Moved git root and added deggl-build environment

This commit is contained in:
Leonetienne
2021-12-06 02:58:35 +01:00
parent 719bd5b7db
commit 13d2e87ebd
23 changed files with 1144 additions and 1 deletions

9
GhettoCrypt/Halfblock.h Normal file
View File

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