comparison libtomcrypt/src/mac/hmac/hmac_memory.c @ 285:1b9e69c058d2

propagate from branch 'au.asn.ucc.matt.ltc.dropbear' (head 20dccfc09627970a312d77fb41dc2970b62689c3) to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01)
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 13:23:58 +0000
parents
children 0cbe8f6dbf9e
comparison
equal deleted inserted replaced
281:997e6f7dc01e 285:1b9e69c058d2
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2 *
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
5 *
6 * The library is free for all purposes without any express
7 * guarantee it works.
8 *
9 * Tom St Denis, [email protected], http://libtomcrypt.org
10 */
11 #include "tomcrypt.h"
12
13 /**
14 @file hmac_memory.c
15 HMAC support, process a block of memory, Tom St Denis/Dobes Vandermeer
16 */
17
18 #ifdef HMAC
19
20 /**
21 HMAC a block of memory to produce the authentication tag
22 @param hash The index of the hash to use
23 @param key The secret key
24 @param keylen The length of the secret key (octets)
25 @param in The data to HMAC
26 @param inlen The length of the data to HMAC (octets)
27 @param out [out] Destination of the authentication tag
28 @param outlen [in/out] Max size and resulting size of authentication tag
29 @return CRYPT_OK if successful
30 */
31 int hmac_memory(int hash,
32 const unsigned char *key, unsigned long keylen,
33 const unsigned char *in, unsigned long inlen,
34 unsigned char *out, unsigned long *outlen)
35 {
36 hmac_state *hmac;
37 int err;
38
39 LTC_ARGCHK(key != NULL);
40 LTC_ARGCHK(in != NULL);
41 LTC_ARGCHK(out != NULL);
42 LTC_ARGCHK(outlen != NULL);
43
44 /* allocate ram for hmac state */
45 hmac = XMALLOC(sizeof(hmac_state));
46 if (hmac == NULL) {
47 return CRYPT_MEM;
48 }
49
50 if ((err = hmac_init(hmac, hash, key, keylen)) != CRYPT_OK) {
51 goto LBL_ERR;
52 }
53
54 if ((err = hmac_process(hmac, in, inlen)) != CRYPT_OK) {
55 goto LBL_ERR;
56 }
57
58 if ((err = hmac_done(hmac, out, outlen)) != CRYPT_OK) {
59 goto LBL_ERR;
60 }
61
62 err = CRYPT_OK;
63 LBL_ERR:
64 #ifdef LTC_CLEAN_STACK
65 zeromem(hmac, sizeof(hmac_state));
66 #endif
67
68 XFREE(hmac);
69 return err;
70 }
71
72 #endif
73
74
75 /* $Source: /cvs/libtom/libtomcrypt/src/mac/hmac/hmac_memory.c,v $ */
76 /* $Revision: 1.3 $ */
77 /* $Date: 2005/05/05 14:35:58 $ */