aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-08-15 16:09:14 +0000
committerlloyd <[email protected]>2013-08-15 16:09:14 +0000
commit995837383cc8989c0adcbcafdcbf0809911b5283 (patch)
treeeb195706096134c7bc27de1e76466b199bf959c0 /src/utils
parentf8c0a11b383c49b078f08e352fbe8384411c8a7e (diff)
Move CBC to Transformation API
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/exceptn.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/utils/exceptn.h b/src/utils/exceptn.h
index f611c9976..c480ffd48 100644
--- a/src/utils/exceptn.h
+++ b/src/utils/exceptn.h
@@ -61,18 +61,6 @@ struct BOTAN_DLL Invalid_Key_Length : public Invalid_Argument
};
/**
-* Invalid_Block_Size Exception
-*/
-struct BOTAN_DLL Invalid_Block_Size : public Invalid_Argument
- {
- Invalid_Block_Size(const std::string& mode,
- const std::string& pad) :
- Invalid_Argument("Padding method " + pad +
- " cannot be used with " + mode)
- {}
- };
-
-/**
* Invalid_IV_Length Exception
*/
struct BOTAN_DLL Invalid_IV_Length : public Invalid_Argument