X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fhmac.h;h=b2eeb7d36a61860acdfa4b3863eeccf0527c2d96;hb=1062e7a84e38a0e708fa3a7de81bba8ad45a2d45;hp=b1359aac84f2989592f1542a4d309d0f8cb43b3f;hpb=9a2b952ab7a836a546997e60497d471c326bc6b7;p=gnulib.git diff --git a/lib/hmac.h b/lib/hmac.h index b1359aac8..b2eeb7d36 100644 --- a/lib/hmac.h +++ b/lib/hmac.h @@ -1,5 +1,5 @@ /* hmac.h -- hashed message authentication codes - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2009-2011 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ RESBUF buffer. Return 0 on success. */ int hmac_md5 (const void *key, size_t keylen, - const void *buffer, size_t buflen, void *resbuf); + const void *buffer, size_t buflen, void *resbuf); /* Compute Hashed Message Authentication Code with SHA-1, over BUFFER data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the @@ -36,6 +36,6 @@ hmac_md5 (const void *key, size_t keylen, success. */ int hmac_sha1 (const void *key, size_t keylen, - const void *in, size_t inlen, void *resbuf); + const void *in, size_t inlen, void *resbuf); #endif /* HMAC_H */