csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
#ifndef H_RPMSIGNFILES
2ff057
#define H_RPMSIGNFILES
2ff057
2ff057
#include <rpm/rpmtypes.h>
2ff057
#include <rpm/rpmutil.h>
2ff057
2ff057
#ifdef __cplusplus
2ff057
extern "C" {
2ff057
#endif
2ff057
2ff057
/**
2ff057
 * Sign file digests in header and store the signatures in header
2ff057
 * @param h		package header
2ff057
 * @param key		signing key
2ff057
 * @param keypass	signing key password
2ff057
 * @return		RPMRC_OK on success
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
rpmRC rpmSignFiles(Header h, const char *key, char *keypass);
2ff057
2ff057
#ifdef _cplusplus
2ff057
}
2ff057
#endif
2ff057
2ff057
#endif /* H_RPMSIGNFILES */