aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-03-13 14:33:04 +0000
committerlloyd <[email protected]>2013-03-13 14:33:04 +0000
commit35c5cbed2ebe0eb72e2ff665b78a9027d17c19ec (patch)
tree46b89bdc0bb85231b0dd465e5a208615d1503ce7 /src/pubkey
parent33c0c05989f9c024ab46d176c2cc1177c3c9d6ec (diff)
Move assert.h from internal to very public (included in types.h)
This reduces friction to writing an assert, so hopefully there will be more of them as a result. And we can use asserts in public headers now, very useful for templates.
Diffstat (limited to 'src/pubkey')
-rw-r--r--src/pubkey/dl_group/dl_group.cpp1
-rw-r--r--src/pubkey/ecc_key/ecc_key.cpp1
-rw-r--r--src/pubkey/ecdh/ecdh.cpp1
-rw-r--r--src/pubkey/gost_3410/gost_3410.cpp1
-rw-r--r--src/pubkey/pubkey.cpp1
-rw-r--r--src/pubkey/rsa/rsa.cpp1
6 files changed, 0 insertions, 6 deletions
diff --git a/src/pubkey/dl_group/dl_group.cpp b/src/pubkey/dl_group/dl_group.cpp
index 837d4ea82..fda86c298 100644
--- a/src/pubkey/dl_group/dl_group.cpp
+++ b/src/pubkey/dl_group/dl_group.cpp
@@ -14,7 +14,6 @@
#include <botan/pipe.h>
#include <botan/pem.h>
#include <botan/internal/workfactor.h>
-#include <botan/internal/assert.h>
namespace Botan {
diff --git a/src/pubkey/ecc_key/ecc_key.cpp b/src/pubkey/ecc_key/ecc_key.cpp
index 22bc41249..c9d4d62fe 100644
--- a/src/pubkey/ecc_key/ecc_key.cpp
+++ b/src/pubkey/ecc_key/ecc_key.cpp
@@ -14,7 +14,6 @@
#include <botan/ber_dec.h>
#include <botan/secmem.h>
#include <botan/point_gfp.h>
-#include <botan/internal/assert.h>
namespace Botan {
diff --git a/src/pubkey/ecdh/ecdh.cpp b/src/pubkey/ecdh/ecdh.cpp
index 5a42f4a49..0f93a0f97 100644
--- a/src/pubkey/ecdh/ecdh.cpp
+++ b/src/pubkey/ecdh/ecdh.cpp
@@ -8,7 +8,6 @@
*/
#include <botan/ecdh.h>
-#include <botan/internal/assert.h>
namespace Botan {
diff --git a/src/pubkey/gost_3410/gost_3410.cpp b/src/pubkey/gost_3410/gost_3410.cpp
index 19287d2cf..9a1e6d85b 100644
--- a/src/pubkey/gost_3410/gost_3410.cpp
+++ b/src/pubkey/gost_3410/gost_3410.cpp
@@ -10,7 +10,6 @@
#include <botan/gost_3410.h>
#include <botan/der_enc.h>
#include <botan/ber_dec.h>
-#include <botan/internal/assert.h>
namespace Botan {
diff --git a/src/pubkey/pubkey.cpp b/src/pubkey/pubkey.cpp
index 8430e2c7b..26a144843 100644
--- a/src/pubkey/pubkey.cpp
+++ b/src/pubkey/pubkey.cpp
@@ -14,7 +14,6 @@
#include <botan/engine.h>
#include <botan/lookup.h>
#include <botan/internal/bit_ops.h>
-#include <botan/internal/assert.h>
#include <memory>
namespace Botan {
diff --git a/src/pubkey/rsa/rsa.cpp b/src/pubkey/rsa/rsa.cpp
index 6719a9960..adb7768b3 100644
--- a/src/pubkey/rsa/rsa.cpp
+++ b/src/pubkey/rsa/rsa.cpp
@@ -10,7 +10,6 @@
#include <botan/parsing.h>
#include <botan/numthry.h>
#include <botan/keypair.h>
-#include <botan/internal/assert.h>
#include <future>
namespace Botan {