Rename gpgsig struct fields for clarity
[pacman-ng.git] / lib / libalpm / signing.h
bloba378fa500cfd9070e5084f3ff23255a4c0fe9e77
1 /*
2 * signing.h
4 * Copyright (c) 2008-2011 Pacman Development Team <pacman-dev@archlinux.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef _ALPM_SIGNING_H
20 #define _ALPM_SIGNING_H
22 #include "alpm.h"
24 struct __pmpgpsig_t {
25 /* we will either store the encoded data or the raw data-
26 * this way we can decode on an as-needed basis since most
27 * operations won't require the overhead of base64 decodes
28 * on all packages in a sync repository. */
29 char *base64_data;
30 unsigned char *data;
31 size_t len;
34 int _alpm_gpgme_checksig(const char *path, const pmpgpsig_t *sig);
35 int _alpm_load_signature(const char *sigfile, pmpgpsig_t *pgpsig);
36 pgp_verify_t _alpm_db_get_sigverify_level(pmdb_t *db);
38 #endif /* _ALPM_SIGNING_H */
40 /* vim: set ts=2 sw=2 noet: */