2021-07-01 09:18:42 +00:00
|
|
|
/***
|
|
|
|
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
|
|
|
|
{
|
2022-05-27 17:13:08 +00:00
|
|
|
AU_COPY_MOVE_DEF(RSAKey);
|
|
|
|
|
2021-07-01 09:18:42 +00:00
|
|
|
RSAMeta meta;
|
|
|
|
DerBuffer blob;
|
|
|
|
};
|
|
|
|
}
|