summaryrefslogtreecommitdiff
path: root/rpmio
AgeCommit message (Expand)AuthorFilesLines
2012-05-31Only use local mempcpy() if system libraries dont provide onePanu Matilainen1-0/+2
2012-05-31xmalloc() and xrealloc() never fail, remove redundant checksPanu Matilainen1-46/+1
2012-05-31Call alloca() and stat() by their own names...Panu Matilainen1-14/+12
2012-05-31Eliminate unnecessary glob portability fiddlesPanu Matilainen1-14/+0
2012-05-31Eliminate VMS, MS-DOS, Windows and Amiga compatibility hacks in rpmglobPanu Matilainen1-77/+4
2012-05-31Eliminate shell interruptability hack in rpmglobPanu Matilainen1-16/+1
2012-05-31We always have xstrdup() available, eliminate redundant alternatvePanu Matilainen1-10/+0
2012-05-31Eliminate getpwnam_r() and getlogin_r() uses from rpmglobPanu Matilainen1-60/+0
2012-05-31Eliminate mempcpy() related conditionals from rpmglobPanu Matilainen1-65/+4
2012-05-31Remove __GNUC__ conditionals on variable sized local arraysPanu Matilainen1-22/+0
2012-05-31Eliminate unnecessary libc header typedeffery from rpmglobPanu Matilainen1-86/+25
2012-05-31Run indent -kr on the glob implementationPanu Matilainen1-942/+847
2012-05-31Bury our glob() implementation entirely inside rpmglob.c (RhBug:819680)Panu Matilainen2-5/+1275
2012-05-31Export our own version of glob_pattern_p() as rpmIsGlob()Panu Matilainen2-1/+13
2012-05-31Split rpmGlob() to a separate source filePanu Matilainen3-141/+149
2012-05-22Add support for 7zip compressed tarballsChristophe Fergeau3-1/+9
2012-05-21Split prelink checking into a helper functionPanu Matilainen1-42/+42
2012-05-10Keep the macro buffer terminated on appendPanu Matilainen1-1/+2
2012-05-10Fix off-by-ones in mbAppend() and mbAppendStr()Panu Matilainen1-2/+2
2012-04-18Always return NULL from fdFree()Panu Matilainen1-1/+1
2012-03-22Oops, "magic eight" is necessary here afterallPanu Matilainen1-2/+2
2012-03-20Bump library sonames in preparation for new releasePanu Matilainen1-1/+1
2012-03-14Unbreak lua's base64 encode/decode extensionsPanu Matilainen1-4/+4
2012-03-14Fix ufdCopy() for large (> 2GB) filesPanu Matilainen2-23/+17
2011-11-10Doh, somehow managed to miss the warnings from these missing includes :(Panu Matilainen1-0/+1
2011-11-09Make base64 encoding/decoding part of rpmio public APIPanu Matilainen7-26/+25
2011-11-09Add a signature verification method to keyringPanu Matilainen2-0/+27
2011-11-09Split keyring find-by-signature to helper function, document...Panu Matilainen1-16/+31
2011-11-09Parse pubkey parameters on rpmPubkeyNew() already and store resultsPanu Matilainen1-0/+7
2011-11-09Add an alternative API for parsing PGP packetsPanu Matilainen2-6/+45
2011-11-09Allocate signature and pubkey dynamically within pgpDig on PGP parsePanu Matilainen1-23/+35
2011-11-09Use pgpDigGetParams() in pgpVerifySig() compat wrapper tooPanu Matilainen1-1/+2
2011-11-08Revert "Take advantage of pgpDigParamsCmp() in rpmKeyringLookup()"Panu Matilainen1-1/+3
2011-11-08Tolerate NULL key in pgpVerifySignature()Panu Matilainen1-3/+3
2011-11-07Eliminate unused params member from pgpDigParamsPanu Matilainen2-4/+0
2011-11-07Take advantage of pgpDigParamsCmp() in rpmKeyringLookup()Panu Matilainen1-3/+1
2011-11-07Add ad API for retrieving algorithm values from digest parameter containersPanu Matilainen2-0/+24
2011-11-07Add an API for comparing two digest parameter containersPanu Matilainen2-0/+31
2011-11-07And finally, make pgpDig struct fully opaquePanu Matilainen2-8/+8
2011-11-07Eliminate direct pgpDig accesses from keyringPanu Matilainen1-6/+6
2011-11-07Add a dumb API to retrieve pubkey / signature params from pgpDigPanu Matilainen2-0/+24
2011-11-07Process all keys and signatures we findPanu Matilainen1-37/+32
2011-11-07Make pgpPrtPubkeyParams() return an int like all the others do tooPanu Matilainen1-7/+7
2011-11-07Add another pgpVerify variant which takes key and sig as separate argsPanu Matilainen2-13/+31
2011-11-07Clean up pgpPrtPkts() and friends a bitPanu Matilainen1-29/+20
2011-11-04Bury all NSS specifics into a separate sourcePanu Matilainen5-557/+545
2011-11-04Implement PGP key & sig algorithm specific part OO-stylePanu Matilainen2-134/+158
2011-11-04Lift RSA/DSA specific signature verification to helper functionsPanu Matilainen1-57/+80
2011-11-04Lift RSA/DSA key MPI calculations to helper functionsPanu Matilainen1-44/+66
2011-11-04Lift RSA/DSA signature MPI calculations to helper functionsPanu Matilainen1-47/+58