#include #include #include class Auth{ private: RSA * pubkey; ///< Holds the public key. public: Auth(); ///< Attempts to load the GBv2 public key. bool PubKey_Check(std::string & data, std::string basesign); ///< Attempts to verify RSA signature using the public key. };