X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=keydb%2Fkeydb_hkp.c;h=ab33f4960127aa713f4be474c765ef6cfc62be49;hp=79d5c4b302e30d433a63664092fedba9895b2bc4;hb=a2979c20e1ab2d52e3a961ac7dad45fee9d6345a;hpb=00e37c36f214bf9d2e9794d3089e64522a6275a2 diff --git a/keydb/keydb_hkp.c b/keydb/keydb_hkp.c index 79d5c4b..ab33f49 100644 --- a/keydb/keydb_hkp.c +++ b/keydb/keydb_hkp.c @@ -143,24 +143,6 @@ static int hkp_fetch_key_url(struct onak_dbctx *dbctx, return count; } -/** - * hkp_fetch_key_id - Given a keyid fetch the key from HKP server. - */ -static int hkp_fetch_key_id(struct onak_dbctx *dbctx, - uint64_t keyid, - struct openpgp_publickey **publickey, - bool intrans) -{ - struct onak_hkp_dbctx *privctx = (struct onak_hkp_dbctx *) dbctx->priv; - char keyurl[1024]; - - snprintf(keyurl, sizeof(keyurl), - "%s/lookup?op=get&search=0x%08" PRIX64, - privctx->hkpbase, keyid); - - return (hkp_fetch_key_url(dbctx, keyurl, publickey, intrans)); -} - /** * hkp_fetch_key_fp - Given a fingerprint fetch the key from HKP server. */ @@ -191,6 +173,24 @@ static int hkp_fetch_key_fp(struct onak_dbctx *dbctx, return (hkp_fetch_key_url(dbctx, keyurl, publickey, intrans)); } +/** + * hkp_fetch_key_id - Given a keyid fetch the key from HKP server. + */ +static int hkp_fetch_key_id(struct onak_dbctx *dbctx, + uint64_t keyid, + struct openpgp_publickey **publickey, + bool intrans) +{ + struct onak_hkp_dbctx *privctx = (struct onak_hkp_dbctx *) dbctx->priv; + char keyurl[1024]; + + snprintf(keyurl, sizeof(keyurl), + "%s/lookup?op=get&search=0x%08" PRIX64, + privctx->hkpbase, keyid); + + return (hkp_fetch_key_url(dbctx, keyurl, publickey, intrans)); +} + /** * fetch_key_text - Tries to find the keys that contain the supplied text. * @search: The text to search for. @@ -322,6 +322,7 @@ static void hkp_endtrans(struct onak_dbctx *dbctx) #define NEED_KEYID2UID 1 #define NEED_GETKEYSIGS 1 #define NEED_UPDATEKEYS 1 +#define NEED_GET 1 #include "keydb.c" /** @@ -363,8 +364,9 @@ struct onak_dbctx *keydb_hkp_init(struct onak_db_config *dbcfg, bool readonly) dbctx->cleanupdb = hkp_cleanupdb; dbctx->starttrans = hkp_starttrans; dbctx->endtrans = hkp_endtrans; - dbctx->fetch_key_id = hkp_fetch_key_id; + dbctx->fetch_key = generic_fetch_key; dbctx->fetch_key_fp = hkp_fetch_key_fp; + dbctx->fetch_key_id = hkp_fetch_key_id; dbctx->fetch_key_text = hkp_fetch_key_text; dbctx->store_key = hkp_store_key; dbctx->update_keys = generic_update_keys;