From f8714d1bf6f2bcedbbda341cf98326ef80874d62 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sat, 31 May 2014 10:58:50 +0000 Subject: unifdef -UDOXYGEN and manually remove the few doxygen comments that are not wrapped in #ifdef DOXYGEN... Requested by miod@ --- src/lib/libssl/ssl_lib.c | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'src/lib/libssl/ssl_lib.c') diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 1138ac5a69..55c6b4493a 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c @@ -1,6 +1,3 @@ -/*! \file ssl/ssl_lib.c - * \brief Version independent SSL functions. - */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -2957,12 +2954,6 @@ SSL_want(const SSL *s) return (s->rwstate); } -/*! - * \brief Set the callback for generating temporary RSA keys. - * \param ctx the SSL context. - * \param cb the callback - */ - void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, RSA *(*cb)(SSL *ssl, int is_export, @@ -2979,28 +2970,6 @@ int keylength)) SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb); } -#ifdef DOXYGEN -/*! - * \brief The RSA temporary key callback function. - * \param ssl the SSL session. - * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite. - * \param keylength if \c is_export is \c TRUE, then \c keylength is the size - * of the required key in bits. - * \return the temporary RSA key. - * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback - */ - -RSA * -cb(SSL *ssl, int is_export, int keylength) -{} -#endif - -/*! - * \brief Set the callback for generating temporary DH keys. - * \param ctx the SSL context. - * \param dh the callback - */ - void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, DH *(*dh)(SSL *ssl, int is_export, int keylength)) -- cgit v1.2.3-55-g6feb