aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pubkey/workfactor.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-01 21:20:55 +0000
committerlloyd <[email protected]>2014-01-01 21:20:55 +0000
commit197dc467dec28a04c3b2f30da7cef122dfbb13e9 (patch)
treecdbd3ddaec051c72f0a757db461973d90c37b97a /lib/pubkey/workfactor.h
parent62faac373c07cfe10bc8c309e89ebdd30d8e5eaa (diff)
Shuffle things around. Add NIST X.509 test to build.
Diffstat (limited to 'lib/pubkey/workfactor.h')
-rw-r--r--lib/pubkey/workfactor.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/pubkey/workfactor.h b/lib/pubkey/workfactor.h
new file mode 100644
index 000000000..179b580e7
--- /dev/null
+++ b/lib/pubkey/workfactor.h
@@ -0,0 +1,24 @@
+/*
+* 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 {
+
+/**
+* Estimate work factor for discrete logarithm
+* @param prime_group_size size of the group in bits
+* @return estimated security level for this group
+*/
+size_t dl_work_factor(size_t prime_group_size);
+
+}
+
+#endif