summaryrefslogtreecommitdiff
path: root/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h')
-rwxr-xr-xutils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h
new file mode 100755
index 0000000000..709bb079f0
--- /dev/null
+++ b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/hmac.h
@@ -0,0 +1,53 @@
1/*
2 * Copyright (c) 1999, 2000, 2002 Virtual Unlimited B.V.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
20/*!\file hmac.h
21 * \brief HMAC algorithm, headers.
22 * \author Bob Deblier <bob.deblier@pandora.be>
23 * \ingroup HMAC_m
24 */
25
26#ifndef _HMAC_H
27#define _HMAC_H
28
29#include "beecrypt/beecrypt.h"
30
31/*!\ingroup HMAC_m
32 */
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/* not used directly as keyed hash function, but instead used as generic methods */
39
40BEECRYPTAPI
41int hmacSetup ( byte*, byte*, const hashFunction*, hashFunctionParam*, const byte*, size_t);
42BEECRYPTAPI
43int hmacReset (const byte*, const hashFunction*, hashFunctionParam*);
44BEECRYPTAPI
45int hmacUpdate( const hashFunction*, hashFunctionParam*, const byte*, size_t);
46BEECRYPTAPI
47int hmacDigest( const byte*, const hashFunction*, hashFunctionParam*, byte*);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif