New directory structure for libghettocrypt

This commit is contained in:
Leonetienne
2022-05-16 21:43:22 +02:00
parent 9772c5fcf8
commit ae276e49af
38 changed files with 19406 additions and 1721 deletions

View File

@@ -0,0 +1,10 @@
#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;
}