summaryrefslogtreecommitdiff
path: root/lib/signature.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-03-26 09:59:01 +0200
committerPanu Matilainen <pmatilai@redhat.com>2009-03-26 09:59:01 +0200
commit64280efc1e5ba39ce05cb304e0fd1cf15843f94b (patch)
tree743571d28821817131f66e8bbea4a8213dc0f18c /lib/signature.h
parent4d31b0433f3f804f81955c32e63c93f31506e8ad (diff)
downloadlibrpm-tizen-64280efc1e5ba39ce05cb304e0fd1cf15843f94b.tar.gz
librpm-tizen-64280efc1e5ba39ce05cb304e0fd1cf15843f94b.tar.bz2
librpm-tizen-64280efc1e5ba39ce05cb304e0fd1cf15843f94b.zip
Put the PGP foobar signature generation out of its misery
- the last freeware PGP version (6.5.8) is from year 2000 and doesn't come close to compiling on modern distros, commercial versions we're not interested in - "PGP" signatures in rpm mean RSA, gpg can handle that just fine since forever - the code's been unused for years, unlikely to be functional anyway...
Diffstat (limited to 'lib/signature.h')
-rw-r--r--lib/signature.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/signature.h b/lib/signature.h
index b3b527a72..fa595c6df 100644
--- a/lib/signature.h
+++ b/lib/signature.h
@@ -15,17 +15,6 @@ typedef enum sigType_e {
RPMSIGTYPE_HEADERSIG= 5 /*!< Header style signature */
} sigType;
-/** \ingroup signature
- * Identify PGP versions.
- * @note Greater than 0 is a valid PGP version.
- */
-typedef enum pgpVersion_e {
- PGP_NOTDETECTED = -1,
- PGP_UNKNOWN = 0,
- PGP_2 = 2,
- PGP_5 = 5
-} pgpVersion;
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -109,14 +98,6 @@ int rpmLookupSignatureType(int action);
*/
char * rpmGetPassPhrase(const char * prompt, const rpmSigTag sigTag);
-/** \ingroup signature
- * Return path to pgp executable of given type, or NULL when not found.
- * @retval pgpVer pgp version
- * @return path to pgp executable
- */
-const char * rpmDetectPGPVersion(
- pgpVersion * pgpVer);
-
#ifdef __cplusplus
}
#endif