mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
20 lines
372 B
C
20 lines
372 B
C
|
#ifndef RSGIXS_H
|
||
|
#define RSGIXS_H
|
||
|
|
||
|
#include "gxs/rsgxs.h"
|
||
|
|
||
|
/*!
|
||
|
* Retroshare general identity exchange service
|
||
|
* provides a means to distribute identities among peers
|
||
|
* also provides encyption, decryption, verification,
|
||
|
* and signing functionality using any created identities
|
||
|
*/
|
||
|
class RsGixs : RsGxs
|
||
|
{
|
||
|
public:
|
||
|
RsGixs();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // RSGIXS_H
|