summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/examples/reader.c
blob: ee72dcd9c3a623a7d36800bef55d842d7a23e567 (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
#define _GNU_SOURCE
/* Roughly glibc compatible error reporting.  */
#define error(S, E, F, ...) do {                        \
  fprintf (stderr, (F), __VA_ARGS__);                   \
  int s = (S), e = (E);                                 \
  if (e) { fprintf (stderr, ": %s", strerror (e)); }    \
  fprintf (stderr, "\n");                               \
  fflush (stderr);                                      \
  if (s) { exit (s); }                                  \
  } while (0)
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <sequoia/openpgp.h>

int
main (int argc, char **argv)
{
  pgp_error_t err;
  pgp_reader_t reader;
  pgp_cert_t cert;

  if (argc != 2)
    error (1, 0, "Usage: %s <file>", argv[0]);

  reader = pgp_reader_from_file (&err, argv[1]);
  cert = pgp_cert_from_reader (&err, reader);
  if (cert == NULL)
    error (1, 0, "pgp_cert_from_reader: %s", pgp_error_to_string (err));

  char *debug = pgp_cert_debug (cert);
  printf ("%s", debug);
  free (debug);

  pgp_cert_free (cert);
  pgp_reader_free (reader);
  return 0;
}