Use proper doxygen markup to mark deprecations

This commit is contained in:
Manuel Pégourié-Gonnard 2015-03-20 16:19:35 +00:00
parent 47e0214d2c
commit 71432849ed
10 changed files with 32 additions and 19 deletions

View file

@ -2,7 +2,8 @@
* \file pbkdf2.h
*
* \brief Password-Based Key Derivation Function 2 (from PKCS#5)
* DEPRECATED: use pkcs5.h instead.
*
* \deprecated Use pkcs5.h instead.
*
* \author Mathias Olsson <mathias@kompetensum.com>
*
@ -46,7 +47,8 @@ extern "C" {
/**
* \brief PKCS#5 PBKDF2 using HMAC
* DEPRECATED: Use pkcs5_pbkdf2_hmac() instead!
*
* \deprecated Use pkcs5_pbkdf2_hmac() instead
*
* \param ctx Generic HMAC context
* \param password Password to use when generating key
@ -66,7 +68,8 @@ int pbkdf2_hmac( md_context_t *ctx, const unsigned char *password,
/**
* \brief Checkup routine
* DEPRECATED: Use pkcs5_self_test() instead!
*
* \deprecated Use pkcs5_self_test() instead
*
* \return 0 if successful, or 1 if the test failed
*/