aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-08 19:42:16 +0000
committerlloyd <[email protected]>2008-11-08 19:42:16 +0000
commit8dba7b5264403e781bbb86ff61850e4377dca7b9 (patch)
tree5e784f8e4bbf0ed423e850600adaef3eda4cd07d /src/pubkey
parent8f86d41613db588e4912fd23a61f7c6b3947e32a (diff)
Split base.h into block_cipher.h and stream_cipher.h
It turned out many files were including base.h merely to get other includes (like types.h, secmem.h, and exceptn.h). Those have been changed to directly include the files containing the declarations that code needs.
Diffstat (limited to 'src/pubkey')
-rw-r--r--src/pubkey/pubkey/pubkey.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pubkey/pubkey/pubkey.h b/src/pubkey/pubkey/pubkey.h
index ed66c212e..14faa1096 100644
--- a/src/pubkey/pubkey/pubkey.h
+++ b/src/pubkey/pubkey/pubkey.h
@@ -6,9 +6,10 @@
#ifndef BOTAN_PUBKEY_H__
#define BOTAN_PUBKEY_H__
-#include <botan/base.h>
#include <botan/pk_keys.h>
#include <botan/pk_pad.h>
+#include <botan/symkey.h>
+#include <botan/rng.h>
namespace Botan {