blob: 7b9ba6caaa18d34e6578eaa307acb61b0feb961a (
plain)
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
|
/*************************************************
* Filters Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_FILTERS_H__
#define BOTAN_FILTERS_H__
#include <botan/pipe.h>
#include <botan/basefilt.h>
#include <botan/data_snk.h>
#include <botan/base64.h>
#include <botan/hex.h>
namespace Botan {
/*************************************************
* Stream Cipher Filter *
*************************************************/
class BOTAN_DLL StreamCipher_Filter : public Keyed_Filter
{
public:
void seek(u32bit position) { cipher->seek(position); }
bool supports_resync() const { return (cipher->IV_LENGTH != 0); }
void set_iv(const InitializationVector&);
void write(const byte[], u32bit);
StreamCipher_Filter(const std::string&);
StreamCipher_Filter(const std::string&, const SymmetricKey&);
~StreamCipher_Filter() { delete cipher; }
private:
SecureVector<byte> buffer;
StreamCipher* cipher;
};
/*************************************************
* Hash Filter *
*************************************************/
class BOTAN_DLL Hash_Filter : public Filter
{
public:
void write(const byte input[], u32bit len) { hash->update(input, len); }
void end_msg();
Hash_Filter(const std::string&, u32bit = 0);
~Hash_Filter() { delete hash; }
private:
const u32bit OUTPUT_LENGTH;
HashFunction* hash;
};
/*************************************************
* MessageAuthenticationCode Filter *
*************************************************/
class BOTAN_DLL MAC_Filter : public Keyed_Filter
{
public:
void write(const byte input[], u32bit len) { mac->update(input, len); }
void end_msg();
MAC_Filter(const std::string&, u32bit = 0);
MAC_Filter(const std::string&, const SymmetricKey&, u32bit = 0);
~MAC_Filter() { delete mac; }
private:
const u32bit OUTPUT_LENGTH;
MessageAuthenticationCode* mac;
};
}
#endif
|