Added headers for some common mathematical fields - Started adding class structures - Added declarations for useful functions Added operator-assignment operator overloads to BigInteger
17 lines
226 B
C++
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);
|
|
};
|
|
}
|
|
} |