signing: move to new signing verification and return scheme
[pacman-ng.git] / lib / libalpm / signing.h
blob22f6357e1bdd1b7fde4db267b3b14c9bfd347c7a
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 int _alpm_gpgme_checksig(alpm_handle_t *handle, const char *path,
25 const char *base64_sig, alpm_sigresult_t *result);
26 int _alpm_check_pgp_helper(alpm_handle_t *handle, const char *path,
27 const char *base64_sig, int optional, int marginal, int unknown,
28 enum _alpm_errno_t invalid_err);
30 #endif /* _ALPM_SIGNING_H */
32 /* vim: set ts=2 sw=2 noet: */