1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
/*************************************************
* Basic Filters Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/basefilt.h>
namespace Botan {
/*************************************************
* Chain Constructor *
*************************************************/
Chain::Chain(Filter* f1, Filter* f2, Filter* f3, Filter* f4)
{
if(f1) { attach(f1); incr_owns(); }
if(f2) { attach(f2); incr_owns(); }
if(f3) { attach(f3); incr_owns(); }
if(f4) { attach(f4); incr_owns(); }
}
/*************************************************
* Chain Constructor *
*************************************************/
Chain::Chain(Filter* filters[], u32bit count)
{
for(u32bit j = 0; j != count; j++)
if(filters[j])
{
attach(filters[j]);
incr_owns();
}
}
/*************************************************
* Fork Constructor *
*************************************************/
Fork::Fork(Filter* f1, Filter* f2, Filter* f3, Filter* f4)
{
Filter* filters[4] = { f1, f2, f3, f4 };
set_next(filters, 4);
}
/*************************************************
* Fork Constructor *
*************************************************/
Fork::Fork(Filter* filters[], u32bit count)
{
set_next(filters, count);
}
/*************************************************
* Set the algorithm key *
*************************************************/
void Keyed_Filter::set_key(const SymmetricKey& key)
{
if(base_ptr)
base_ptr->set_key(key);
else
throw Invalid_State("Keyed_Filter::set_key: No base algorithm set");
}
/*************************************************
* Check if a keylength is valid *
*************************************************/
bool Keyed_Filter::valid_keylength(u32bit n) const
{
if(base_ptr)
return base_ptr->valid_keylength(n);
throw Invalid_State("Keyed_Filter::valid_keylength: No base algorithm set");
}
}
|