Browse Source

Fix crypto_hmac_sha256 documentation comment

Robert Ransom 12 years ago
parent
commit
cd029f0ca3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/common/crypto.c

+ 2 - 2
src/common/crypto.c

@@ -1716,8 +1716,8 @@ crypto_hmac_sha1(char *hmac_out,
 }
 
 /** Compute the HMAC-SHA-256 of the <b>msg_len</b> bytes in <b>msg</b>, using
- * the <b>key</b> of length <b>key_len</b>.  Store the DIGEST_LEN-byte result
- * in <b>hmac_out</b>.
+ * the <b>key</b> of length <b>key_len</b>.  Store the DIGEST256_LEN-byte
+ * result in <b>hmac_out</b>.
  */
 void
 crypto_hmac_sha256(char *hmac_out,