aboutsummaryrefslogtreecommitdiffstats
path: root/cs/add_supplemental_media.html
Commit message (Collapse)AuthorAgeFilesLines
* update Czech filesMarja van Waes2014-10-121-3/+3
|
* add just started Catalan and Czech translationsMarja van Waes2013-12-261-0/+65
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/* $Id$ */

#ifndef _HDLIST_H
#define _HDLIST_H

#include "rpmversion.h"
#include "header.h"

/* Hdlistsign.c: imported but modified functions */

int rpmsign(char *passphrase, const char *rpm);

int rpmchecksig(rpmts ts, const char * filename, int flags);

/* rpmlib does not export some usefull functions
 * We Import its here 
 * This File should be the last included */

/* From rpmlead.h */

#ifndef _H_RPMLEAD

rpmRC writeLead(FD_t fd, const struct rpmlead *lead);
rpmRC readLead(FD_t fd, struct rpmlead *lead);

#endif /* _H_RPMLEAD */

/* From signature.h */

#ifndef H_SIGNATURE

typedef	enum sigType_e {
    RPMSIGTYPE_HEADERSIG= 5
} sigType;

typedef enum pgpVersion_e {
    PGP_NOTDETECTED	= -1,
    PGP_UNKNOWN		= 0,
    PGP_2		= 2,
    PGP_5		= 5
} pgpVersion;

Header rpmNewSignature(void);