summaryrefslogtreecommitdiff
path: root/rpmkeys.c
AgeCommit message (Collapse)AuthorFilesLines
2023-08-28Upgrade version to 4.14sandbox/wangbiao/rpm414_tizenbiao716.wang1-5/+5
Change-Id: Ifd629ba679a11ede4d831195c6aea2245efc3300 Signed-off-by: biao716.wang <biao716.wang@samsung.com>
2012-02-03Add --test option to rpmkeysPanu Matilainen1-0/+5
- Allows, well, testing whether a key could be imported before actually doing it
2011-01-07Honor --root in rpmkeys tooPanu Matilainen1-0/+2
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-09-03Add a brand new rpmkeys utility for keyring operationsPanu Matilainen1-0/+76
- Keyring operations (adding/viewing/removing keys and verifying packages against a given keyring) are different from main rpm operations in that they only need access to the rpm keyring, and no write access anywhere else in the system. At the moment the rpm keyring happens to be the rpmdb but that's just an implementation detail that is likely to change sooner or later. Besides paving way to separating the rpm keyring from the rpmdb, splitting this to a small, separate utility allows limiting its required access from SELinux POV etc. - For now, this only implements what's already in rpm: --import and --checksig, remaining operations like listing and manipulating keyring contents is left as an exercise for another day...