Browse Source

[trac781] forgot to update a doxygen

Jelte Jansen 14 years ago
parent
commit
f4f11a9b1c
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/lib/crypto/crypto.h

+ 5 - 2
src/lib/crypto/crypto.h

@@ -217,8 +217,11 @@ void signHMAC(const void* data,
 ///
 /// \param data The data to verify
 /// \param data_len The length of the data
-/// \param key The TSIGKey to verify with
-/// \param mac The signature to verify
+/// \param secret The secret to sign with
+/// \param secret_len The length of the secret
+/// \param hash_algorithm The hash algorithm
+/// \param sig The signature to verify
+/// \param sig_len The length of the signature
 /// \return True if the signature verifies, false if not
 bool verifyHMAC(const void* data,
                 const size_t data_len,