aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey
diff options
context:
space:
mode:
authorDaniel Neus <[email protected]>2016-11-04 12:52:33 +0100
committerDaniel Neus <[email protected]>2016-11-04 12:52:33 +0100
commit2d982e4df3667d1b66d6f6933cba45771f0db4c4 (patch)
treebdb49ca3ad01ce0c2658ccea224a7d06baedd810 /src/lib/pubkey
parent0b820c330a62aaa3a715b7b7d00276f886cd4a0f (diff)
use "forward declare header" pk_ops_fwd.h instead of self forward declaring them
Diffstat (limited to 'src/lib/pubkey')
-rw-r--r--src/lib/pubkey/pk_keys.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/lib/pubkey/pk_keys.h b/src/lib/pubkey/pk_keys.h
index f5ffb8f13..8ebad48e7 100644
--- a/src/lib/pubkey/pk_keys.h
+++ b/src/lib/pubkey/pk_keys.h
@@ -12,23 +12,12 @@
#include <botan/asn1_oid.h>
#include <botan/alg_id.h>
#include <botan/rng.h>
+#include <botan/pk_ops_fwd.h>
namespace Botan {
class RandomNumberGenerator;
-namespace PK_Ops {
-
-class Encryption;
-class Decryption;
-class Key_Agreement;
-class KEM_Encryption;
-class KEM_Decryption;
-class Verification;
-class Signature;
-
-}
-
/**
* Public Key Base Class.
*/