1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-21 23:38:49 -05:00

Make decode_signature available to the library

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2012-11-02 23:44:11 +10:00
parent 05745089ac
commit 198154962b
2 changed files with 5 additions and 2 deletions

View File

@ -418,7 +418,8 @@ int _alpm_key_import(alpm_handle_t *handle, const char *fpr) {
* @param data_len the length of the returned data
* @return 0 on success, -1 on failure to properly decode
*/
static int decode_signature(const char *base64_data,
int _alpm_decode_signature(const char *base64_data,
unsigned char **data, size_t *data_len)
{
size_t len = strlen(base64_data);
@ -518,7 +519,7 @@ int _alpm_gpgme_checksig(alpm_handle_t *handle, const char *path,
if(base64_sig) {
/* memory-based, we loaded it from a sync DB */
size_t data_len;
int decode_ret = decode_signature(base64_sig,
int decode_ret = _alpm_decode_signature(base64_sig,
&decoded_sigdata, &data_len);
if(decode_ret) {
handle->pm_errno = ALPM_ERR_SIG_INVALID;

View File

@ -34,6 +34,8 @@ int _alpm_process_siglist(alpm_handle_t *handle, const char *identifier,
int _alpm_key_in_keychain(alpm_handle_t *handle, const char *fpr);
int _alpm_key_import(alpm_handle_t *handle, const char *fpr);
int _alpm_decode_signature(const char *base64_data,
unsigned char **data, size_t *data_len);
int _alpm_extract_keyid(alpm_handle_t *handle, const char *identifier,
const unsigned char *sig, const size_t len, alpm_list_t **keys);