AuroraRuntime/Include/Aurora/Crypto/RSA/RSAMeta.hpp

19 lines
310 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: RSAMeta.hpp
Date: 2021-7-1
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::RSA
{
struct RSAMeta
{
AU_COPY_MOVE_DEF(RSAMeta);
ERSAKeyType type;
EKeyType side;
};
}