AuroraRuntime/Include/Aurora/Crypto/RSA/RSAKey.hpp
Reece 9a93d4ec8d [+] Added the old RSA wrappers
[*] Prepare for implementing ECC (again)
2021-07-01 10:18:42 +01:00

17 lines
269 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
{
RSAMeta meta;
DerBuffer blob;
};
}