summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/src/PGPw/sdk8/include/pgpHashWords.h
blob: b77aabac562ddb3f3ef2dda72d7788cdd5c80cb5 (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
/*____________________________________________________________________________
	Copyright (C) 2002 PGP Corporation
	All rights reserved.

	$Id: pgpHashWords.h,v 1.2 2004/01/03 02:25:31 bgaiser Exp $
____________________________________________________________________________*/
#ifndef HASHWORDLIST_H
#define HASHWORDLIST_H

#include "pgpBase.h"

PGP_BEGIN_C_DECLARATIONS

/*____________________________________________________________________________
	Hash word list types
____________________________________________________________________________*/
enum PGPHashWordList_
{
	kPGPHashWordList_Even					= 0,
	kPGPHashWordList_Odd					= 1,
	
	PGP_ENUM_FORCE( PGPHashWordList_ )
};
PGPENUM_TYPEDEF( PGPHashWordList_, PGPHashWordList );

/*____________________________________________________________________________
	Hash word functions
____________________________________________________________________________*/

	PGPError 
PGPGetHashWordString(
	PGPUInt32			index,
	PGPHashWordList		list,
	PGPChar8			hashWordString[ 12 ]);


PGP_END_C_DECLARATIONS

#endif