Addition of the Basics of the New Identity Service.

- Provides Real & Pseudonym Ids.
	- Real Ids are tied to GPG Ids using a One-Way Hash.
Added IDS for QCHESS and ARADO plugins.
Added new RsIdentity external interface.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-new_cache_system@4932 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-02-13 18:22:35 +00:00
parent 0a254ab5a2
commit 459b51e814
6 changed files with 625 additions and 2 deletions

View file

@ -1734,6 +1734,7 @@ RsTurtle *rsTurtle = NULL ;
#include "services/p3photoservice.h"
#include "services/p3wikiservice.h"
#include "services/p3idservice.h"
#ifndef PQI_DISABLE_TUNNEL
#include "services/p3tunnel.h"
@ -2140,6 +2141,10 @@ int RsServer::StartupRetroShare()
p3WikiService *mWikis = new p3WikiService(RS_SERVICE_TYPE_WIKI);
pqih -> addService(mWikis);
// Testing New Cache Services.
p3IdService *mIdentity = new p3IdService(RS_SERVICE_TYPE_IDENTITY);
pqih -> addService(mIdentity);
#ifndef RS_RELEASE
p3GameLauncher *gameLauncher = new p3GameLauncher(mLinkMgr);
pqih -> addService(gameLauncher);
@ -2409,6 +2414,7 @@ int RsServer::StartupRetroShare()
// Testing of new cache system interfaces.
rsPhoto = mPhotos;
rsWiki = mWikis;
rsIdentity = mIdentity;
#ifdef RS_USE_BLOGS
rsBlogs = mBlogs;