summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/sha/shs.h
blob: 77b4ff250e5ba4671e9738e7361e49363cf50bc7 (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
#ifndef _SHS_DEFINED

#include <krb5.h>

#define _SHS_DEFINED

/* Some useful types */

typedef krb5_octet	BYTE;
typedef krb5_ui_4	LONG;

/* Exit status of functions. */

#define OK      0
#define ERROR   -1

/* Define the following to use the updated SHS implementation */

#define NEW_SHS         /**/

/* The SHS block size and message digest sizes, in bytes */

#define SHS_DATASIZE    64
#define SHS_DIGESTSIZE  20

/* The structure for storing SHS info */

typedef struct {
               LONG digest[ 5 ];            /* Message digest */
               LONG countLo, countHi;       /* 64-bit bit count */
               LONG data[ 16 ];             /* SHS data buffer */
               } SHS_INFO;

/* Message digest functions (shs.c) */
void shsInit
	KRB5_PROTOTYPE((SHS_INFO *shsInfo));
void shsUpdate
	KRB5_PROTOTYPE((SHS_INFO *shsInfo, BYTE *buffer, int count));
void shsFinal
	KRB5_PROTOTYPE((SHS_INFO *shsInfo));


/* Keyed Message digest functions (hmac_sha.c) */
krb5_error_code hmac_sha
	KRB5_PROTOTYPE((krb5_octet *text,
			int text_len,
			krb5_octet *key,
			int key_len,
			krb5_octet *digest));


#define NIST_SHA_CKSUM_LENGTH		SHS_DIGESTSIZE
#define HMAC_SHA_CKSUM_LENGTH		SHS_DIGESTSIZE


extern krb5_checksum_entry
    nist_sha_cksumtable_entry,
    hmac_sha_cksumtable_entry;

#endif /* _SHS_DEFINED */