From 20b5cc96be546db4e86b2216de3fccaeb7b2a4b2 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 13 Aug 2011 14:40:41 -0400 Subject: pacman/package: show presence of signature in in -Si adds a new API method: alpm_pkg_get_base64_sig [Dan: don't use a new header string in frontend] Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- lib/libalpm/alpm.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/libalpm/alpm.h') diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 6ed82e40..3bbef0ab 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -713,6 +713,12 @@ alpm_list_t *alpm_pkg_get_backup(alpm_pkg_t *pkg); */ alpm_db_t *alpm_pkg_get_db(alpm_pkg_t *pkg); +/** Retuns the base64 encoded package signature. + * @param pkg a pointer to package + * @return a reference to an internal string + */ +const char *alpm_pkg_get_base64_sig(alpm_pkg_t *pkg); + /* End of alpm_pkg_t accessors */ /* @} */ -- cgit v1.2.3-24-g4f1b