X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fhmac.h;h=a36a5af269519eeccac5a6b020518b770da7fc56;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=67e51014abf57e1d9295c8cb571c71ffac857808;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/lib/hmac.h b/lib/hmac.h index 67e51014a..a36a5af26 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-2013 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 @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program; if not, see . */ /* Written by Simon Josefsson. */ @@ -38,4 +37,20 @@ int hmac_sha1 (const void *key, size_t keylen, const void *in, size_t inlen, void *resbuf); +/* Compute Hashed Message Authentication Code with SHA-256, over BUFFER + data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the + output to pre-allocated 32 byte minimum RESBUF buffer. Return 0 on + success. */ +int +hmac_sha256 (const void *key, size_t keylen, + const void *in, size_t inlen, void *resbuf); + +/* Compute Hashed Message Authentication Code with SHA-512, over BUFFER + data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the + output to pre-allocated 64 byte minimum RESBUF buffer. Return 0 on + success. */ +int +hmac_sha512 (const void *key, size_t keylen, + const void *in, size_t inlen, void *resbuf); + #endif /* HMAC_H */