blob: 85dccd1d3afd5d9ee90e156e62269b4657c44607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef H_SIGNATURE
#define H_SIGNATURE
/** \ingroup signature
* \file lib/signature.h
* Generate and verify signatures.
*/
#include <rpm/rpmtypes.h>
#ifdef __cplusplus
extern "C" {
#endif
/** \ingroup signature
* Read (and verify header+payload size) signature header.
* If an old-style signature is found, we emulate a new style one.
* @param fd file handle
* @retval sighp address of (signature) header (or NULL)
* @retval msg failure msg
* @return rpmRC return code
*/
rpmRC rpmReadSignature(FD_t fd, Header *sighp, char ** msg);
/** \ingroup signature
* Write signature header.
* @param fd file handle
* @param h (signature) header
* @return 0 on success, 1 on error
*/
int rpmWriteSignature(FD_t fd, Header h);
/** \ingroup signature
* Generate signature and write to file
* @param SHA256 SHA256 digest
* @param SHA1 SHA1 digest
* @param MD5 MD5 digest
* @param size size of header
* @param payloadSize size of archive
* @param fd output file
*/
rpmRC rpmGenerateSignature(char *SHA256, char *SHA1, uint8_t *MD5,
rpm_loff_t size, rpm_loff_t payloadSize, FD_t fd);
#ifdef __cplusplus
}
#endif
#endif /* H_SIGNATURE */
|