From 869ca6f82bf1a2e0ca88792f8705fb8bad2a3528 Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Fri, 26 Jul 2002 18:20:59 +0000 Subject: [PATCH] Fixed the comment. The length of the secret may be larger than 64 bytes. --- security/nss/lib/softoken/alghmac.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/nss/lib/softoken/alghmac.h b/security/nss/lib/softoken/alghmac.h index 3cb1a74dc6f8..dbf4a0a39997 100644 --- a/security/nss/lib/softoken/alghmac.h +++ b/security/nss/lib/softoken/alghmac.h @@ -46,9 +46,9 @@ HMAC_Destroy(HMACContext *cx); * hash_alg the algorithm with which the HMAC is performed. This * should be, SEC_OID_MD5, SEC_OID_SHA1, or SEC_OID_MD2. * secret the secret with which the HMAC is performed. - * secret_len the length of the secret, limited to at most 64 bytes. + * secret_len the length of the secret. * - * NULL is returned if an error occurs or the secret is > 64 bytes. + * NULL is returned if an error occurs. */ extern HMACContext * HMAC_Create(const SECHashObject *hashObj, const unsigned char *secret,