summaryrefslogtreecommitdiff
path: root/rpmsign.c
AgeCommit message (Collapse)AuthorFilesLines
2011-08-01Fix misleading error message when gpg key is expired (RhBug:672727)Jindrich Novy1-1/+1
2011-03-17Fix a small memleak in rpmsign toolPanu Matilainen1-0/+1
2010-11-15Rearrange new cli utilities' popt tables for nicer outputPanu Matilainen1-3/+9
- Use a separate table for the tool-specific options, include that from the "master" option table to get option group summary in --help.
2010-10-13Oops, fixup rpmsign exit codes on successPanu Matilainen1-0/+2
2010-10-13Make rpmsign use the new signing interface (minimal conversion for now)Panu Matilainen1-7/+11
2010-09-29Whoops, couple of includes gone missing in the shufflePanu Matilainen1-0/+1
2010-09-28Rip the useless %_signature macro and everything around itPanu Matilainen1-37/+2
2010-09-03Add a brand new rpmsign utility for package signingPanu Matilainen1-0/+187
- Signing (and deleting) are different from everything else in rpm in that it needs very little of rpm's facilities. For example access to the rpmdb is not needed at all. Splitting this to a separate, small utility allows various possibilities, like severely limiting its access from SELinux POV, control of signature generation with cli arguments (the main rpm executable is already overcrowded with options). It's also the first step to allow reasonably splitting rpm signing to a separate package; not everybody needs to sign packages, yet signing support needs to drag in GPG and whatnot. - Reimplement / refactor various librpm signature generation helpers into somewhat saner internal versions.