From: Nikos Mavrogiannopoulos Date: Mon, 17 Jun 2002 17:37:20 +0000 (+0000) Subject: cleanups X-Git-Tag: gnutls_0_5_0~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3ec486248f9a8f2b252da33f2cb2287033a2f42;p=thirdparty%2Fgnutls.git cleanups --- diff --git a/libextra/gnutls_openpgp.c b/libextra/gnutls_openpgp.c index a8df2db7a8..19a72a4969 100644 --- a/libextra/gnutls_openpgp.c +++ b/libextra/gnutls_openpgp.c @@ -1180,15 +1180,15 @@ gnutls_openpgp_fingerprint(const gnutls_datum *cert, char *fpr, size_t *fprlen) return 0; } -/** +/*- * gnutls_openpgp_keyid - Gets the keyID * @cert: the raw data that contains the OpenPGP public key. * @keyid: the buffer to save the keyid. * * Returns the 64-bit keyID of the OpenPGP key. - **/ + -*/ int -gnutls_openpgp_keyid( const gnutls_datum *cert, opaque keyid[8] ) +gnutls_openpgp_keyid( const gnutls_datum *cert, unsigned char keyid[8] ) { CDK_KBNODE kb_pk = NULL, pkt; PKT_public_key *pk = NULL; @@ -1354,7 +1354,7 @@ gnutls_certificate_set_openpgp_keyring_mem( GNUTLS_CERTIFICATE_CREDENTIALS c, return rc; } -/** +/*- * gnutls_openpgp_recv_key - Receives a key from a HKP keyserver. * @host - the hostname of the keyserver. * @port - the service port (if not set use 11371). @@ -1362,7 +1362,7 @@ gnutls_certificate_set_openpgp_keyring_mem( GNUTLS_CERTIFICATE_CREDENTIALS c, * @key - Context to store the raw (dearmored) key. * * Try to connect to a public keyserver to get the specified key. - **/ + -*/ int gnutls_openpgp_recv_key(const char *host, short port, uint32 keyid, gnutls_datum *key)