19 lines
314 B
C++
19 lines
314 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 encoding;
|
|
EKeyType type;
|
|
};
|
|
} |