CryptoCPP/RSA/RSA.h
GabrielTofvesson 179cbc234b Sorted everything into namespaces
Added headers for some common mathematical fields
  - Started adding class structures
  - Added declarations for useful functions
Added operator-assignment operator overloads to BigInteger
2018-02-26 02:28:58 +01:00

17 lines
226 B
C++

#pragma once
namespace CryptoCPP {
namespace RSA {
struct PublicKey
{
// Big integer modulus
// Big integer exponent
};
class RSA
{
public:
//RSA(PublicKey* key, Math::BigInteger* privateKey);
};
}
}