mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
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
This commit is contained in:
parent
90427eb08b
commit
1f4d827140
2 changed files with 16 additions and 16 deletions
|
@ -477,23 +477,23 @@ bool AuthGPG::getGPGSignedList(std::list<RsPgpId> &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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue