mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-15 04:22:27 -04:00

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6047 b45a01b8-16f6-495d-af2f-9b41ad6348cc
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
// COMPILE_LINE: g++ -o test_pgp_signature_parsing test_pgp_signature_parsing.cc -g -I../../../openpgpsdk/include -I../ -L../lib -lretroshare ../../../libbitdht/src/lib/libbitdht.a ../../../openpgpsdk/lib/libops.a -lgnome-keyring -lupnp -lssl -lcrypto -lbz2
|
|
//
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <iostream>
|
|
#include <util/utest.h>
|
|
#include <pgp/pgphandler.h>
|
|
|
|
INITTEST() ;
|
|
|
|
static std::string passphrase_callback(void *data,const char *uid_info,const char *what,int prev_was_bad)
|
|
{
|
|
return std::string(getpass(what)) ;
|
|
}
|
|
|
|
static std::string stringFromBytes(unsigned char *bytes,size_t len)
|
|
{
|
|
static const char out[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' } ;
|
|
|
|
std::string res ;
|
|
|
|
for(int j = 0; j < len; j++)
|
|
{
|
|
res += out[ (bytes[j]>>4) ] ;
|
|
res += out[ bytes[j] & 0xf ] ;
|
|
}
|
|
|
|
return res ;
|
|
}
|
|
|
|
int main(int argc,char *argv[])
|
|
{
|
|
// test pgp ids.
|
|
//
|
|
PGPIdType id("3e5b22140ef56abb") ;
|
|
|
|
std::cerr << "Id st : " << id.toStdString() << std::endl;
|
|
|
|
// test PGPHandler
|
|
//
|
|
// 0 - init
|
|
|
|
static const std::string pubring = "pubring.gpg" ;
|
|
static const std::string secring = "secring.gpg" ;
|
|
static const std::string trustdb = "trustdb.gpg" ;
|
|
static const std::string lockfil = "lock" ;
|
|
|
|
PGPHandler::setPassphraseCallback(&passphrase_callback) ;
|
|
PGPHandler pgph(pubring,secring,trustdb,lockfil) ;
|
|
|
|
pgph.printKeys() ;
|
|
|
|
FINALREPORT("Signature parsing") ;
|
|
|
|
return TESTRESULT() ;
|
|
}
|
|
|