mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-24 22:09:34 -04:00
update, during the GUI for invitation changes
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1084 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
f36e0ba3ae
commit
efd9a2f056
3 changed files with 29 additions and 22 deletions
|
@ -579,6 +579,11 @@ bool AuthXPGP::LoadCertificateFromFile(std::string filename, std::string &id)
|
|||
return ProcessXPGP(xpgp, id);
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
|
||||
//! Saves something to filename
|
||||
|
||||
//! \returns true on success, false on failure
|
||||
bool AuthXPGP::SaveCertificateToFile(std::string id, std::string filename)
|
||||
{
|
||||
#ifdef AUTHXPGP_DEBUG
|
||||
|
|
|
@ -28,6 +28,23 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
//! Converts invitation to clean XPGP certificate
|
||||
|
||||
//! This function was used for extracting XPGP certificates from invitation
|
||||
//!letters. Typical input was something like
|
||||
//! You have been invited to join the retroshare community by: beardog-unstable-02
|
||||
//!
|
||||
//! Retroshare is a Friend-2-Friend network that enables you to communicate securely and privately ....
|
||||
//! ... text stuff .....
|
||||
//!
|
||||
//!-----BEGIN XPGP CERTIFICATE-----
|
||||
//!MIICxQIBADCCAUkCAQAwHhcNMDkwMjI4MTgzODIyWhcNMTQwMjI3MTgzODIyWjCC
|
||||
//! ...more ines here...
|
||||
//!mEuhG8UmDIzC1jeTu8rTMnO+DO3FH/cek1vlfFl4t9g/xktG9U4SPLg=
|
||||
//!-----END XPGP CERTIFICATE-----
|
||||
//!
|
||||
//! In the newer gui version, users send each other almost clean certificates,
|
||||
//! so this functon is used only to avoid possible bugs with line endings
|
||||
std::string cleanUpCertificate(std::string badCertificate);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue