mirror of
				https://github.com/RetroShare/RetroShare.git
				synced 2025-11-03 23:34:48 -05:00 
			
		
		
		
	Cleaned up some of the debug messages. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7306 b45a01b8-16f6-495d-af2f-9b41ad6348cc
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * libretroshare/src/pgp: pgpauxutils.cc
 | 
						|
 *
 | 
						|
 * PGP interface for RetroShare.
 | 
						|
 *
 | 
						|
 * Copyright 2014-2014 by Robert Fernie.
 | 
						|
 *
 | 
						|
 * This library is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU Library General Public
 | 
						|
 * License Version 2.1 as published by the Free Software Foundation.
 | 
						|
 *
 | 
						|
 * This library is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
 * Library General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU Library General Public
 | 
						|
 * License along with this library; if not, write to the Free Software
 | 
						|
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 | 
						|
 * USA.
 | 
						|
 *
 | 
						|
 * Please report all bugs and problems to "retroshare@lunamutt.com".
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include "pgp/pgpauxutils.h"
 | 
						|
 | 
						|
#include "pqi/authgpg.h"
 | 
						|
#include "rsserver/p3face.h"
 | 
						|
#include "retroshare/rsiface.h"
 | 
						|
#include "retroshare/rspeers.h"
 | 
						|
 | 
						|
PgpAuxUtilsImpl::PgpAuxUtilsImpl()
 | 
						|
{
 | 
						|
	return;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
const RsPgpId& PgpAuxUtilsImpl::getPGPOwnId() 
 | 
						|
{
 | 
						|
	return AuthGPG::getAuthGPG()->getGPGOwnId();
 | 
						|
}
 | 
						|
 | 
						|
RsPgpId PgpAuxUtilsImpl::getPGPId(const RsPeerId& sslid)
 | 
						|
{
 | 
						|
	return rsPeers->getGPGId(sslid);
 | 
						|
}
 | 
						|
 | 
						|
bool PgpAuxUtilsImpl::getKeyFingerprint(const RsPgpId& id,PGPFingerprintType& fp) const
 | 
						|
{
 | 
						|
	return AuthGPG::getAuthGPG()->getKeyFingerprint(id, fp);
 | 
						|
}
 | 
						|
 | 
						|
bool PgpAuxUtilsImpl::VerifySignBin(const void *data, 
 | 
						|
		uint32_t len, 
 | 
						|
		unsigned char *sign, 
 | 
						|
		unsigned int signlen, 
 | 
						|
		const PGPFingerprintType& withfingerprint)
 | 
						|
 | 
						|
{
 | 
						|
	return AuthGPG::getAuthGPG()->VerifySignBin(data, len, sign, signlen, withfingerprint);
 | 
						|
}
 | 
						|
 | 
						|
bool PgpAuxUtilsImpl::getGPGAllList(std::list<RsPgpId> &ids)
 | 
						|
{
 | 
						|
	return AuthGPG::getAuthGPG()->getGPGAllList(ids);
 | 
						|
}
 | 
						|
 | 
						|
bool PgpAuxUtilsImpl::askForDeferredSelfSignature(const void *data, 
 | 
						|
		const uint32_t len, 
 | 
						|
		unsigned char *sign, 
 | 
						|
		unsigned int *signlen,
 | 
						|
		int& signature_result )
 | 
						|
{
 | 
						|
	return RsServer::notify()->askForDeferredSelfSignature(data, len, sign, signlen, signature_result);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 |