summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2017-04-12 14:39:13 +0300
committerPanu Matilainen <pmatilai@redhat.com>2017-04-12 14:39:13 +0300
commit67de3956eadadad39c19a9720d92545a196caf30 (patch)
tree594dc75fdc7cfb4bf01aad3ffbad8927a1d0050f
parent5e420756a47c7db587bcb6eec68bc347ec57b981 (diff)
downloadrpm-67de3956eadadad39c19a9720d92545a196caf30.tar.gz
Remove bunch of ancient OpenPGP related @todo's
Support for insecure V3 public keys was dropped six years ago, not something todo... Also we have supported SHA256 for a good while now.
-rw-r--r--rpmio/rpmpgp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/rpmio/rpmpgp.h b/rpmio/rpmpgp.h
index 1d1b37783..b444ec940 100644
--- a/rpmio/rpmpgp.h
+++ b/rpmio/rpmpgp.h
@@ -251,7 +251,6 @@ typedef enum pgpCompressAlgo_e {
*
* Implementations MUST implement SHA-1. Implementations SHOULD
* implement MD5.
- * @todo Add SHA256.
*/
typedef enum pgpHashAlgo_e {
PGPHASHALGO_MD5 = 1, /*!< MD5 */
@@ -970,7 +969,6 @@ char * pgpHexStr(const uint8_t *p, size_t plen);
/** \ingroup rpmpgp
* Calculate OpenPGP public key fingerprint.
- * @todo V3 non-RSA public keys not implemented.
* @param pkt OpenPGP packet (i.e. PGPTAG_PUBLIC_KEY)
* @param pktlen OpenPGP packet length (no. of bytes)
* @retval keyid public key fingerprint
@@ -981,7 +979,6 @@ int pgpPubkeyFingerprint(const uint8_t * pkt, size_t pktlen,
/** \ingroup rpmpgp
* Extract OpenPGP public key fingerprint from base64 encoded packet.
-* @todo V3 non-RSA public keys not implemented.
* @param b64pkt base64 encoded openpgp packet
* @retval keyid public key fingerprint
* @return 8 (no. of bytes) on success, < 0 on error