GCrypt/Keyset.h

10 lines
151 B
C
Raw Normal View History

2021-12-05 22:40:36 +01:00
#pragma once
#include <array>
#include "Block.h"
#include "Config.h"
2021-12-06 02:20:47 +01:00
namespace GhettoCipher
{
typedef std::array<Block, N_ROUNDS> Keyset;
}