Add functions for verifying database signature
[pacman-ng.git] / lib / libalpm / signing.h
blob077737801eb94cbb4db5191d0530afe7f0c2d790
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 *encdata;
30 size_t rawlen;
31 unsigned char *rawdata;
34 int _alpm_gpgme_checksig(const char *path, const pmpgpsig_t *sig);
36 #endif /* _ALPM_SIGNING_H */
38 /* vim: set ts=2 sw=2 noet: */