Remove some RsPeers related dead code

This commit is contained in:
Gioacchino Mazzurco 2019-10-06 23:20:18 +02:00
parent 563260d012
commit ab93d31d17
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051
3 changed files with 4 additions and 35 deletions

View file

@ -712,7 +712,6 @@ public:
/* Auth Stuff */
virtual std::string getPGPKey(const RsPgpId& pgp_id,bool include_signatures) = 0;
virtual bool GetPGPBase64StringAndCheckSum(const RsPgpId& gpg_id,std::string& gpg_base64_string,std::string& gpg_base64_checksum) = 0;
virtual bool hasExportMinimal() = 0;
/**
* @brief Import certificate into the keyring
@ -746,8 +745,9 @@ public:
std::string& error_string )=0;
// Certificate utils
virtual bool cleanCertificate(const std::string &certstr, std::string &cleanCert,bool& is_short_format,uint32_t& error_code) = 0;
virtual bool saveCertificateToFile(const RsPeerId& id, const std::string &fname) = 0;
virtual bool cleanCertificate(
const std::string& certstr, std::string& cleanCert,
bool& is_short_format, uint32_t& error_code ) = 0;
virtual std::string saveCertificateToString(const RsPeerId &id) = 0;
virtual bool signGPGCertificate(const RsPgpId &gpg_id) = 0;