Rename pmhandle_t to alpm_handle_t
[pacman-ng.git] / lib / libalpm / signing.h
blob60e71afb933f8aa233921d9f4efc070a7a525a64
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);
26 pgp_verify_t _alpm_db_get_sigverify_level(pmdb_t *db);
28 #endif /* _ALPM_SIGNING_H */
30 /* vim: set ts=2 sw=2 noet: */