From 1f4d827140e338e9a3694150b4778d85dc384c9b Mon Sep 17 00:00:00 2001 From: csoler Date: Thu, 19 Mar 2015 21:42:31 +0000 Subject: [PATCH] commented out unused (and buggy) function in authgpg git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8054 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/pqi/authgpg.cc | 30 +++++++++++++++--------------- libretroshare/src/pqi/authgpg.h | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/libretroshare/src/pqi/authgpg.cc b/libretroshare/src/pqi/authgpg.cc index 0cb573d11..024d530cd 100644 --- a/libretroshare/src/pqi/authgpg.cc +++ b/libretroshare/src/pqi/authgpg.cc @@ -477,23 +477,23 @@ bool AuthGPG::getGPGSignedList(std::list &ids) return getGPGFilteredList(ids,&filter_OwnSigned); } -bool AuthGPG::getCachedGPGCertificate(const RsPgpId &id, std::string &certificate) -{ - RsStackMutex stack(gpgMtxData); /******* LOCKED ******/ -#ifdef LIMIT_CERTIFICATE_SIZE - certificate = PGPHandler::SaveCertificateToString(RsPgpId(id),false) ; -#else - certificate = PGPHandler::SaveCertificateToString(RsPgpId(id),true) ; -#endif - +// bool AuthGPG::getCachedGPGCertificate(const RsPgpId &id, std::string &certificate) +// { +// RsStackMutex stack(gpgMtxData); /******* LOCKED ******/ // #ifdef LIMIT_CERTIFICATE_SIZE -// std::string cleaned_key ; -// if(PGPKeyManagement::createMinimalKey(certificate,cleaned_key)) -// certificate = cleaned_key ; +// certificate = PGPHandler::SaveCertificateToString(RsPgpId(id),false) ; +// #else +// certificate = PGPHandler::SaveCertificateToString(RsPgpId(id),true) ; // #endif - - return certificate.length() > 0 ; -} +// +// // #ifdef LIMIT_CERTIFICATE_SIZE +// // std::string cleaned_key ; +// // if(PGPKeyManagement::createMinimalKey(certificate,cleaned_key)) +// // certificate = cleaned_key ; +// // #endif +// +// return certificate.length() > 0 ; +// } /***************************************************************** * Loading and Saving Certificates - this has to diff --git a/libretroshare/src/pqi/authgpg.h b/libretroshare/src/pqi/authgpg.h index 4f7a2aed2..eedcf3c7c 100644 --- a/libretroshare/src/pqi/authgpg.h +++ b/libretroshare/src/pqi/authgpg.h @@ -179,7 +179,7 @@ class AuthGPG: public p3Config, public RsThread, public PGPHandler virtual std::string SaveCertificateToString(const RsPgpId &id,bool include_signatures) ; // Cached certificates. - bool getCachedGPGCertificate(const RsPgpId &id, std::string &certificate); + //bool getCachedGPGCertificate(const RsPgpId &id, std::string &certificate); /*********************************************************************************/ /************************* STAGE 6 ***********************************************/