aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/workfactor.h
blob: 653f697e3c9cba531cbce29dc91a62c3eb05351d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* Public Key Work Factor Functions
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_WORKFACTOR_H__
#define BOTAN_WORKFACTOR_H__

#include <botan/types.h>

namespace Botan {

/*
* Work Factor Estimates
*/
BOTAN_DLL u32bit dl_work_factor(u32bit prime_group_size);

}

#endif