You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
#include <iostream>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/param.h>
|
|
|
|
#include "Adapter.hh"
|
|
#include "passphrase_cache.hh"
|
|
#include "status_to_string.hh"
|
|
|
|
#include <pEp/message_api.h>
|
|
#include <pEp/keymanagement.h>
|
|
|
|
using namespace pEp;
|
|
using namespace pEp::Adapter;
|
|
using namespace std;
|
|
|
|
void test()
|
|
{
|
|
passphrase_cache.add("erwin");
|
|
passphrase_cache.add("cathy");
|
|
passphrase_cache.add("bob");
|
|
|
|
const char* bob_filename = ENGINE_TEST "/test_keys/bob-primary-with-password-bob-subkey-without.pgp";
|
|
const char* bob_fpr = "5C76378A62B04CF3F41BEC8D4940FC9FA1878736";
|
|
|
|
const char* erwin_filename = ENGINE_TEST "/test_keys/erwin_normal_encrypted.pgp";
|
|
const char* erwin_fpr = "CBA968BC01FCEB89F04CCF155C5E9E3F0420A570";
|
|
|
|
pEp_identity* bob = ::new_identity("bob@example.org", bob_fpr, "BOB", "Bob Dog");
|
|
PEP_STATUS status = ::set_own_key(session(), bob, bob_fpr);
|
|
|
|
pEp_identity* erwin = ::new_identity("erwin@example.org", erwin_fpr, "BOB", "Bob is Erwin");
|
|
status = ::set_own_key(session(), erwin, erwin_fpr);
|
|
|
|
::free_identity(bob);
|
|
::free_identity(erwin);
|
|
|
|
session(Adapter::release);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
char path[MAXPATHLEN+1];
|
|
const char *templ = "/tmp/test_ensure_passphrase.XXXXXXXXXXXX";
|
|
strcpy(path, templ);
|
|
char *tmpdir = mkdtemp(path);
|
|
assert(tmpdir);
|
|
chdir(tmpdir);
|
|
setenv("HOME", path, 1);
|
|
cerr << "test directory: " << path << endl;
|
|
|
|
test();
|
|
return 0;
|
|
}
|
|
|
|
|