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

19 lines
304 B
C++

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