blob: a378fa500cfd9070e5084f3ff23255a4c0fe9e77 (
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
|
#ifndef _ALPM_SIGNING_H
#define _ALPM_SIGNING_H
#include "alpm.h"
struct __pmpgpsig_t {
char *base64_data;
unsigned char *data;
size_t len;
};
int _alpm_gpgme_checksig(const char *path, const pmpgpsig_t *sig);
int _alpm_load_signature(const char *sigfile, pmpgpsig_t *pgpsig);
pgp_verify_t _alpm_db_get_sigverify_level(pmdb_t *db);
#endif
|