summaryrefslogtreecommitdiffstats
path: root/ffi/examples/configure.c
blob: 9e98661387358d7036420eef5f3001b7e79a95a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#define _GNU_SOURCE
#include <assert.h>
#include <error.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>

#include <sequoia.h>

int
main (int argc, char **argv)
{
  pgp_error_t err;
  sq_config_t cfg;
  sq_context_t ctx;
  sq_keyserver_t ks;

  cfg = sq_context_configure ("org.sequoia-pgp.example");
  sq_config_network_policy (cfg, SQ_NETWORK_POLICY_OFFLINE);
  ctx = sq_config_build (cfg, &err);
  if (ctx == NULL)
    error (1, 0, "Initializing sequoia failed: %s",
           pgp_error_string (err));

  ks = sq_keyserver_sks_pool (ctx);
  if (ks == NULL)
    {
      pgp_error_t err = sq_context_last_error (ctx);
      assert (pgp_error_status (err) == PGP_STATUS_NETWORK_POLICY_VIOLATION);
      char *msg = pgp_error_string (err);
      error (0, 0, "Initializing KeyServer failed as expected: %s",
             msg);
      free (msg);
      pgp_error_free (err);
    }
  else
    error (1, 0, "This should not be allowed");

  sq_keyserver_free (ks);
  sq_context_free (ctx);
  return 0;
}