aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/sha1.h
blob: 52a9842d5746e3c4e1dee3b506f24a55e8fb843c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 *  FIPS-180-1 compliant SHA-1 implementation
 *
 *  Copyright (C) 2001-2003  Christophe Devine
 *  Copyright (C) 2012       Chris Elston, Katalix Systems Ltd <celston@katalix.com>
 *
 *  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
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  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
 *
 *  Changed to use guint instead of uint 2004 by Anders Broman
 *	Original code found at http://www.cr0.net:8040/code/crypto/sha1/
 *  References: http://www.ietf.org/rfc/rfc3174.txt?number=3174
 *
 *  2012-08-21 - C Elston - Split sha1_hmac function to allow incremental usage.
 */

#ifndef _SHA1_H
#define _SHA1_H

#include "ws_symbol_export.h"

/*
 * Length of a SHA-1 digest, in bytes.  160 bits = 20 bytes.
 */
#define SHA1_DIGEST_LEN 20

typedef struct
{
    guint32 total[2];
    guint32 state[5];
    guint8 buffer[64];
}
sha1_context;

WS_DLL_PUBLIC
void sha1_starts( sha1_context *ctx );
WS_DLL_PUBLIC
void sha1_update( sha1_context *ctx, const guint8 *input, guint32 length );
WS_DLL_PUBLIC
void sha1_finish( sha1_context *ctx, guint8 digest[SHA1_DIGEST_LEN] );

typedef struct {
    sha1_context ctx;
    guint8 k_opad[64];
}
sha1_hmac_context;

WS_DLL_PUBLIC
void sha1_hmac_starts( sha1_hmac_context *hctx, const guint8 *key, guint32 keylen );
WS_DLL_PUBLIC
void sha1_hmac_update( sha1_hmac_context *hctx, const guint8 *buf, guint32 buflen );
WS_DLL_PUBLIC
void sha1_hmac_finish( sha1_hmac_context *hctx, guint8 digest[SHA1_DIGEST_LEN] );
WS_DLL_PUBLIC
void sha1_hmac( const guint8 *key, guint32 keylen, const guint8 *buf, guint32 buflen,
                guint8 digest[SHA1_DIGEST_LEN] );

#endif /* sha1.h */