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/Keyset.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <array>
#include "Block.h"
#include "Config.h"
namespace GhettoCipher
{
typedef std::array<Block, N_ROUNDS> Keyset;
}